tadam logo
Did you find an error in the text?
Select this with mouse and press
Ctrl + Enter
Xhtml.co.il Check Spelling
Orphus system

event.isDefaultPrevented()

event.isDefaultPrevented()

Returns: Boolean

Description: Returns whether event.preventDefault() was ever called on this event object.

event.isDefaultPrevented()

version added: 1.3

Example

Checks whether event.preventDefault() was called.
$("a").click(function(event){
  alert( event.isDefaultPrevented() ); // false
  event.preventDefault();
  alert( event.isDefaultPrevented() ); // true
});  
Was this information helpful?
   

Comments