The following code used to function without attempting to render a new template with jQuery verion 1.6. I installed jQuery 1.6.1 and now a radio button click results in an attempt to render a new page.
FYI, the form was submitted on each click because quite a few clients would complete part of the questions, close the browser and expect their work to be there when they came back to finish. If there is a better way, I'd love to know it.
in the application.js on development machine:
$('.submittable').live
('change', function()
{
$(this).parents('form:first').submit();
return false;
}
);
Again, this works in jQuery 1.6 but not 1.6.1. I used this tutorial as a guide.
Any help is appreciated.
UPDATE: continuation of this issue here.
*blah*.submit()will cause the form to POST/GET. What are you expecting? Only when the JS bound to the Submit event of the form returnsfalsewill the form not be submitted... – Greg B May 31 '11 at 19:55return false. Can you describe what you're wanting to do – Greg B May 31 '11 at 20:21falsefrom the handler of your radio'schangeevent, not from your form'ssubmitevent. Seems like you want to submit the form via Ajax, maybe, to prevent a full page reload? Is that what you're trying to do? – ajm May 31 '11 at 20:22