[jQuery] Re: Ajax Help, can't get submitted value

2007-06-07 Thread Ken Iovino
Thanks Mike, I appreciate the help. Ken On Jun 7, 10:55 am, "Mike Alsup" <[EMAIL PROTECTED]> wrote: > Yes, you grab the hidden input the same way. Just don't forget your > comma between the two in the data object. > > Mike > > > Thanks, that worked. One last question... > > > how do I grab a hi

[jQuery] Re: Ajax Help, can't get submitted value

2007-06-07 Thread Mike Alsup
Yes, you grab the hidden input the same way. Just don't forget your comma between the two in the data object. Mike Thanks, that worked. One last question... how do I grab a hidden input value? ("#placebid").click(function() { $.ajax ({ type: "POST", dat

[jQuery] Re: Ajax Help, can't get submitted value

2007-06-07 Thread Ken Iovino
Thanks, that worked. One last question... how do I grab a hidden input value? ("#placebid").click(function() { $.ajax ({ type: "POST", data: { mybid: $('#mybid').val() listingid: $('#listingid').val()

[jQuery] Re: Ajax Help, can't get submitted value

2007-06-07 Thread Mike Alsup
It looks like you're not actually using a form element so you need to handle the data manually. Try adding a data property like this: $("#placebid").click(function() { $.ajax ({ type: "POST", data: { mybid: $('#mybid').val() }, url: "ajax/place_bi