I have a several forms that are output from a database on the same page. It works fine when I don\'t use ajax. When I use Jquery it will only work for the first form. Could
Just a note: You can save a lot of time coding if you serialize those forms.
$('.updateSubmit').live('click', function() { $.post("updateGrab.php", $("#yourform").serialize()); }
Source:
http://api.jquery.com/serialize/