Hi Calzone Seems IE doesn't bubble the event submit, if that's the case, then this plugin can't handle that event, until a workaround is found :)
As an option, you could listen for clicks on the submit button. Maybe you need to check for Enter's (keypress) on the fields. With a few checks, you could handle submits this way. Cheers Ariel Flesler On 6 mar, 09:50, Calzone <[EMAIL PROTECTED]> wrote: > I am trying to bind to the submit function of a form using the jQuey > Listen plugin. > > $.listen('submit', '#eventForm', function(){ > alert("Submit Clicked"); > > } > > This is working fine in firefox but not in Internet Explorer. > > Does anyone have any ideas? > > Calvin