Submit event from few forms
- by Coyod
I have a two or more forms on my page in a row.
I'm trying to hook submit event like:
$('form',someObj).submit(function(e){
/* Do some stuff with ajax */
return false;
});
But always receive events only from a first (by code) form.
Also used each() function to bind event for each object, same thing..
What's wrong?
Thanks!