Open In App

How to stop default hashtag behavior with jQuery ?

Last Updated : 05 Jun, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

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, and 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: In this example, we are using event.isDefaultPrevented() method in jQuery.

HTML




<!doctype html>
<html lang="en">
<head>
    <meta charset="utf-8">
    </script>
</head>
 
<body>
    <a href="https://jquery.com">
        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:


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads