Search w3schools.com:

SHARE THIS PAGE

jQuery event.isDefaultPrevented() Method

jQuery Event Methods jQuery Event Methods

Example

Prevent a link from opening the URL, and check if preventDefault() was called:

$("a").click(function(event){
  event.preventDefault();
  alert("Was preventDefault() called: " + event.isDefaultPrevented());
});

Try it yourself »

Definition and Usage

The event.isDefaultPrevented() method checks whether the preventDefault() method was called for the event.


Syntax

event.isDefaultPrevented()

Parameter Description
event Required. The event parameter comes from the event binding function


jQuery Event Methods jQuery Event Methods


Your suggestion:

Close [X]

Thank You For Helping Us!

Your message has been sent to W3Schools.

Close [X]