How To Onclick Event In Jquery

jQuery is a fast and lightweight JavaScript library that enables you to handle HTML documents, create animations, handle events, and perform AJAX requests. In this blog post, we will learn how to use the onclick event in jQuery. The onclick event is used to execute a function when an element is clicked. Using jQuery, you can attach a click event to any element easily.

Step 1: Include jQuery Library

To use jQuery, you first need to include its library in your project. You can either download the library from the official jQuery website or include it directly from a Content Delivery Network (CDN) like Google or Microsoft. In this tutorial, we will use the Google CDN to include the jQuery library. Add the following script tag in your HTML file, preferably at the bottom of the body tag:

    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
    

Step 2: Create an Element for the OnClick Event

Now let’s create an HTML element that we will use to trigger the onclick event. For this tutorial, we will create a simple button element:

    <button id="myButton">Click me!</button>
    

Step 3: Attach the OnClick Event Using jQuery

To attach the onclick event to the button element, you can use the click() method or the more versatile on() method. Both methods can be used to bind the click event to the selected element(s).

3.1 Using the click() Method

Write a script tag and add the following code to attach the onclick event to the button with the ID ‘myButton’:

    <script>
        $(document).ready(function(){
            $("#myButton").click(function(){
                alert("Button clicked!");
            });
        });
    </script>
    

In the code above, we first wait for the document to be ready using the $(document).ready() method. Then, we select the button element with the ID ‘myButton’ and attach a click event to it using the click() method. When the button is clicked, an alert box will pop up with the message “Button clicked!”.

3.2 Using the on() Method

Alternatively, you can use the on() method to attach the onclick event. The on() method is more versatile as it can work with multiple events and also supports custom event names. Here’s how to attach the onclick event to the button using the on() method:

    <script>
        $(document).ready(function(){
            $("#myButton").on("click", function(){
                alert("Button clicked!");
            });
        });
    </script>
    

In the code above, we select the button element with the ID ‘myButton’ and attach a click event to it using the on() method. The event name is passed as the first argument (“click”), and the function to be executed when the event is triggered is passed as the second argument.

Conclusion

Now you know how to use the onclick event in jQuery. You can use the click() method or the more versatile on() method to attach the click event to any HTML element. Remember to include the jQuery library in your project before using any jQuery methods.