I\'m using the Jquery Validation Plugin to forms loaded via Ajax (dynamic forms). I know that as of Jquery 1.4, live events on submit is now possible. Now the problem is I want
Somehow this seems to work:
$('.dynamicForm').live('mouseover',function(){ $(this).validate({ submitHandler:function(form){ if(confirm("Are you sure?")){ form.submit(); } } }); });