Programs

OnClick Function in JQuery Explained with Examples

One of the fast, small, and feature-rich libraries in JavaScript is jQuery. jQuery is used for making HTML documents, event handling, traversal, and manipulation, etc. 

Whenever an HTML element is clicked, there is the occurrence of the jQuery click event. To trigger the onclick function in jQuery, click() method is used. For example, on clicking a paragraph on a document, a click event will be triggered by the $(“p”).click() method. The user can attach a function to a click method whenever an event of a click occurs to run the function. A piece of code is thereby executed whenever an event of click() is triggered. 

The mouse click is simulated through the HTMLElement.click() method. 

Check out our free courses related to software development.

Click() function is an in-built function in jQuery that starts a click event. Whenever a relevant element is clicked upon, an event is fired by a click() method. This event then fires a click event of elements higher up in the document tree (or event chain).

Explore Our Software Development Free Courses

As the name suggests it is simply the pressing and releasing of the mouse button by the user over the element.

One or more event handlers are attached to the selected elements through the on() method. On clicking on an element, an event of click() occurs. A click() method is executed once an event of click() occurs. A function is attached to a click() method and executed. A click() method is used with other events of jQuery.

Check out Full Stack Development Bootcamp (JS/MERN) – Job Guaranteed from upGrad

Therefore .click() binds an event  handler to the JavaScript event “click”, or it triggers an event upon an element. The variations of the JavaScript onclick method are:

  1. .click( handler ).
  2. .click( [eventData ], handler ).
  3. .click().

The first and the second variations are a short form for .on( “click”, handler ) and the shortcut for the .trigger( “click” ) in the last variation. 

Whenever a mouse pointer is over the element and the button pressed and released, the event click() is then sent to that element. The event can be received by any element of the HTML.

Our learners also read: Learn java online free!

Click() event can also be triggered if the other element is clicked through the following code.

With this code, the message will be alerted by the element 

Through the following events, only a click() event is triggered.

  • When the pointer of a mouse is inside an element and the button of the mouse is depressed.
  • When the pointer of a mouse is inside an element and the button of the mouse is released.

Before taking an action, the above-mentioned events are usually the desired sequence. Else, the other suitable event is the mouse down or mouse up event.

Check out our Java Bootcamp

Explore our Popular Software Engineering Courses

Due to the .click() method being the shortcut for .on( “click”, handler ), the possibility of detaching is present  through the use of .off( “click” ).

Usage

Two ways are present that can be used to call a click() method:

  • With a given function argument
  • Without a given argument

The onclick function in jQuery can be used in elements of HTML like div, paragraphs, hyperlinks, etc. for accomplishing the desired task.  A click is a mouse event that occurs on the depression of the button on the mouse. However, the event will occur if the pointer in a mouse is within the element. 

Syntax: 

$(selector).click();  -> used for triggering a click event for the selected elements.

$(selector).click(function);  -> used  for attaching function to a click event.

  • The optional parameter used is the “function” which is used for execution on the occurrence of a click event.
  • Return value: The selected element is returned that is specified with the function to perform.

In-Demand Software Development Skills

upGrad’s Exclusive Software and Tech Webinar for you –

SAAS Business – What is So Different?

 

Implementation of the method click() 

1. When a function argument is given

In this type of implementation, a function is taken as an input and is executed whenever the method of click()is called.

  • The writing of the code is between the script tag and within the HTML body of the code.
  • The calling of the function is done as an h1 style attribute.
  • An argument is declared with the function and is taken as a function separately.
  • The method toggle is applied over the object using this operator with 1000ms delay.
  • An example of the implementation method with a given function argument is shown below.

The output of the code will be “Clicking me will toggle the text!”

Learn Software Development Courses online from the World’s top Universities. Earn Executive PG Programs, Advanced Certificate Programs, or Masters Programs to fast-track your career.

2. When no argument is given 

The javascript onclick method fires an event of onclick. An element is already assigned to the method. Therefore an element can call the event onclick of another element separately. This can be achieved through the following steps:

  1. An object has to be declared first with an attribute of a particular style that is clickable. An onclick action has to be declared for the object.
  2. A block of script is to be created in the code’s body where the attribution of the method click() is done to a format of different style, p.
  3. The h1 onclick method which is already defined is to be called within the function call.
  4. The same onclick method is then called upon for an attribute.
  5. An example of a code showing the implementation of a click() method without a given argument is shown below.

The output of the code is “Clicking me will call an alert!”.

    • Many events can be used in the $.on method like dblclick, change, and others.
  1. Rendering an HTML button and adding text to the page on clicking of the button.  Click() method is most commonly attached to a button, however, it can be attached to any other elements in a web page.
    • A basic button is rendered with an id of “btn-primary” which is inside a <div> with an id of “main.
    • Through the code, new content is to be displayed with a class of “new content”  in the <p> tag after the clicking of the button.
    • The jQuery is enclosed within the <script> tags.
    • The method click()is attached to the button’s id and an argument is taken as a call back function which is an anonymous function.
    • The string “Button clicked” is returned by the callback function.
    • A function without a name is simply termed as an anonymous function and used as callbacks as arguments of a method. For building any responsive websites and applications, the anonymous functions and the callback methods act as the cornerstone. 
    • The code will start with the button inside the <div> “main”.
    • Once when the button is clicked, the callback function will be called by the event handler as click() method is attached to the button selector.
    • The string “Button clicked” will be displayed.
    • The above code will render the content only once, however for displaying the string every time the code is clicked, append() is used instead of HTML().
    • It will produce the string three times as the new content inside the <p> tag.
    • The callback function is called each time the button is clicked.

Read our Popular Articles related to Software Development

Conclusion

The functioning of the onclick function in jquery has been discussed in the article along with its uses and examples. With only a few lines of code, web page functionality can be created through the JavaScript onclick method.

If you have an urge to learn more about web development and get specialized in other related areas, then you can check the course “Master of Science in Computer Science” offered by upGrad. Specially designed for entry-level professionals (both male and female within 21 to 45 years of age), the course will be on an online platform with live sessions, for the ease of long-distance commuters. With over 30+ projects and assignments, the student will be getting the benefits of IIIT-Bangalore and LJMU alumni status. Feel free to contact our team for any assistance.

What is the difference between OnClick and AddEventListener?

OnClick and AddEventListener can listen and execute a callback function when a button is clicked. There are several differences between these two functions. OnClick can add a single event to an element whereas AddEventListener can add multiple events to an element. AddEventListener can add a third argument to control the event propagation whereas OnClick cannot control event propagation. Another difference is that AddEventListener can be added within elements of JavaScript whereas OnClick can be added as an HTML attribute. OnClick can be used in all versions of the web browser whereas AddEventListener cannot be used in old versions of the web browsers.

Can you use OnClick without JavaScript?

It is possible to create a page which changes OnClick on various elements without using JavaScript. There are several ways to do this, it can be done by using:focus, active, and :checked. :checked is the one that is preferred as it simplifies writing CSS rules and enables you to use various elements to interact with it from several places. There is also another option known as a target which is a pseudo-class that enables you to apply styles to elements when a particular hash link is present or not in an URL.

How to toggle show and hide in jQuery?

The toggle() method checks the selected elements for visibility and toggle between hide() and show(). If an element is hidden then show() is run and if it is visible then hide() is shown. This method creates a toggle effect. Before using this, remember that this function is only used between custom functions. You can use this in the speed parameter, callback parameter, and easing parameter. These all parameters are optional. The speed parameter checks the speed of the hide or show function. The callback parameter is executed after the toggle() method is used. The easing parameter checks the speed of the element at different points of animation.

Want to share this article?

Upskill Yourself & Get Ready for The Future

Leave a comment

Your email address will not be published. Required fields are marked *

Our Popular Software Engineering Courses

Get Free Consultation

Leave a comment

Your email address will not be published. Required fields are marked *

×
Get Free career counselling from upGrad experts!
Book a session with an industry professional today!
No Thanks
Let's do it
Get Free career counselling from upGrad experts!
Book a Session with an industry professional today!
Let's do it
No Thanks