I've got a page with a normal form with a submit button and some jQuery which binds to the form submit event and overrides it with e.preventDefault() and runs an AJAX command. This works fine when the submit button is clicked but when a link with onclick='document.formName.submit();' is clicked, the event is not caught by the AJAX form submit event handler. Any ideas why not or how to get this working without binding to all the a elements?
|
3
|
|
|||
|
|
|
|
A couple of suggestions:
|
||
|
|
|
|
If you are using jQuery, you should be attaching events via it's own event mechanism and not by using "on" properties (onclick etc.). It also has its own event triggering method, aptly named 'trigger', which you should use to activate the form submission event. |
||
|
|
|
Thanks Eran I am using this event binding code this._form.bind('submit', Delegate.create(this, function(e) { e.preventDefault();; this._searchFadeOut(); this.__onFormSubmit.invoke(this, new ZD.Core.GenericEventArgs(this._dateField.attr('value'))); but there is legacy onclick code on the html and I would prefer not to change it as there are just so many links. |
||
|
|
|
Thanks guys! |
||
|
|
