Will returning false prevent form submission? I thought you needed to do:
function (e) {
// .. do your activities
// prevent the event from propogating
e.stop();
}
Chris
On 7/27/07, Karl Guertin <[EMAIL PROTECTED]> wrote:
>
> On 7/27/07, Hector <[EMAIL PROTECTED]> wrote:
> > What is the most efficient way to intercept a form submit event?
> > "onsubmit" in the form tag? "onclick" on the submit button? Make use
> > of the connect function? Something else? Additionally, I would
> > prefer that this method fail in a way that allowed for a normal submit
> > to occur if JavaScript were disabled.
>
> connect(formElement,'onsubmit',function(e){
> console.log(e); //see what's in the Signal event if you don't know
> return false; //prevent form submission
> });
>
> >
>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"MochiKit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/mochikit?hl=en
-~----------~----~----~----~------~----~------~--~---