Trigger onclick handlers of links
This commit is contained in:
parent
a9fe9a2a5f
commit
5d033dba02
2 changed files with 10 additions and 3 deletions
|
@ -203,8 +203,8 @@ jQuery.event = {
|
|||
if ( jQuery.isFunction( jQuery.data(elem, "handle") ) )
|
||||
val = jQuery.data(elem, "handle").apply( elem, data );
|
||||
|
||||
// Handle triggering native .onfoo handlers
|
||||
if ( !fn && elem["on"+type] && elem["on"+type].apply( elem, data ) === false )
|
||||
// Handle triggering native .onfoo handlers (and on links since we don't call .click() for links)
|
||||
if ( (!fn || (jQuery.nodeName(elem, 'a') && type == "click")) && elem["on"+type] && elem["on"+type].apply( elem, data ) === false )
|
||||
val = false;
|
||||
|
||||
// Extra functions don't get the custom event object
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue