Attention reader! Don’t stop learning now. Get hold of all the important HTML concepts with the Web Design for Beginners | HTML course.
How to stop default hashtag behavior with jQuery ?
The event.isDefaultPrevented() method in jQuery is used to determine if this method has been called by an event handler that was triggered by this event. If event.preventDefault() method is called, the default action of the event will not be triggered.
Syntax:
event.preventDefault()
Parameters: This method does not accept any parameter.
Return Value: This method returns undefined.
Example:
HTML
<!doctype html> < html lang = "en" > < head > < meta charset = "utf-8" > < script src = </ script > </ head > < body > default click action is prevented </ a > < div id = "log" ></ div > < script > $("a").click(function(event) { event.preventDefault(); $("< div >") .append("default " + event.type + " prevented") .appendTo("#log"); }); </ script > </ body > </ html > |
Output: