Blog_Banner_Asset
    Homebreadcumb forward arrow iconBlogbreadcumb forward arrow iconSoftware Developmentbreadcumb forward arrow iconOnClick Function in JQuery Explained with Examples

OnClick Function in JQuery Explained with Examples

Last updated:
16th May, 2024
Views
Read Time
14 Mins
share image icon
In this article
Chevron in toc
View All
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.

Ads of upGrad blog

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

Understanding Event Handling in jQuery

Event handling in jQuery is about responding to user actions on a website. When someone interacts with a webpage, like clicking a button or moving the mouse, jquery on click event are triggered. jQuery makes it easier to work with these events by providing simple methods, with on click event in jquery.

For example, you can use onClick to do something when a button is clicked. It’s like giving instructions to the computer: “When this happens, do that.” This helps make websites interactive and responsive. So, event handling in jQuery is all about making websites more user-friendly by reacting to what users do. It’s a fundamental concept in web development that helps create engaging experiences for visitors with button click event in jquery.

Best Practices for Using onClick in jQuery?

  • Separate Behavior from Presentation

It’s important to separate behavior from presentation. This means keeping JavaScript code in other files rather than collecting it directly within HTML elements. By doing so, you improve code readability as well as maintainability.

  • Use Event Delegation

This is another best practice that uses event delegation whenever possible. This means instead of attaching event handlers directly to individual elements, you can attach them to a parent element that includes the target elements onclick function in jquery. This approach reduces the number of event handlers and improves overall performance, especially in case of dynamically created content and call click event in jquery.

  • Optimize Event Handling

It’s essential to optimize event handling by minimizing the use of expensive operations within event handlers. Performing complex calculations or DOM manipulations can slow down the responsiveness of your application. Instead, consider delegating such tasks to separate functions or optimizing your code for better performance, click on button using jquery.

  • Structured and Commented Code

Furthermore, ensure that your event handlers are properly structured and commented including information like how to call onclick function in jquery. This makes it easier for other developers (or your future self) to understand and maintain the code. Clear and concise documentation can go a long way in facilitating collaboration and troubleshooting and jquery function onclick or button click jquery.

  • Cross-browser Testing

Lastly, always test your onClick functionality across different browsers and devices to ensure compatibility and responsiveness. Browser inconsistencies can sometimes lead to unexpected behavior, so thorough testing is crucial before deploying your application to production.

Advanced Techniques and Features with onClick

When it comes to utilizing the onClick function in jQuery, several advanced techniques and features can elevate your web development skills and enhance user interaction. Let’s delve into some of these advanced concepts and know about jquery to click a button.

  • Event Delegation

Event delegation is a powerful technique that allows you to handle events for multiple elements efficiently, especially when dealing with dynamically generated content. Instead of attaching event handlers to individual elements, you can attach them to a parent container that encompasses all relevant elements. This approach improves performance and simplifies code maintenance, as you only need one event handler for a group of elements for  click on button using jquery.

For example, suppose you have a list of items generated dynamically. Instead of attaching an onClick handler to each item, you can attach it to the parent <ul> element. This way clicks on any list item will be captured and handled by the parent element and how to click button using jquery.

  • Animation and Effects

jQuery provides built-in methods for adding animation and visual effects to your onClick functionality, enhancing the user experience. Functions like fadeIn, fadeOut, slideUp, and slideDown allow you to create smooth transitions between different states of elements.

For instance, you can use the fadeIn function to gradually reveal hidden content when a user clicks on a button. This creates a visually appealing effect that guides the user’s attention and provides feedback on their action.

  • Asynchronous Operations with AJAX

Integrating AJAX (Asynchronous JavaScript and XML) requests with onClick events enables you to fetch and update data from a server without reloading the entire web page. This asynchronous approach enhances the responsiveness of your application and provides a seamless user experience.

For example, you can trigger an AJAX request to fetch additional information from a database when a user clicks on a “Load More” button. The retrieved data can then be dynamically inserted into the webpage, allowing users to access more content without interruption.

  • Event Chaining

Event chaining is a technique where multiple event handlers are linked together to execute sequentially in response to a single user action. jQuery’s on method facilitates event chaining by allowing you to attach multiple event handlers to the same element.

For instance, you can chain together a series of onClick events to perform a sequence of actions when a button is clicked. This could include validating user input, updating the UI, and submitting form data, all in a coordinated manner for click button using jquery

By mastering these advanced techniques and features, you can create more dynamic and interactive web applications using the onClick function in jQuery. Experimenting with these concepts and combining them creatively can unlock endless possibilities for enhancing user engagement and satisfaction with  jquery onclick function information.

Common Use Cases for onClick Functionality

The onClick function in jQuery serves as a versatile tool for implementing various interactive features on websites. Below are some common scenarios where developers frequently utilize the onClick functionality:

  • Button Click Events

One of the most straightforward applications of the onClick function is handling button click events. When a user clicks on a button, such as a “Submit” or “Next” button, you can use onClick to trigger specific actions, such as form submission, navigation to another page, or displaying additional content.

For instance, clicking on a “Like” button on a social media platform can increment the like count for a post using onClick functionality.

  • Image or Link Click Events

onClick can also be applied to images or links to create interactive experiences. When a user clicks on an image or a link, you can use onClick to open a modal window, navigate to a different page, or trigger an animation effect.

For example, clicking on a thumbnail image in a gallery could open a larger version of the image in a lightbox using onClick functionality.

  • Dropdown Menu Activation

Dropdown menus are commonly used for organizing navigation menus or presenting options to users. onClick can be used to activate or expand dropdown menus when a user clicks on a menu item or a toggle button.

For instance, clicking on a “Menu” button in a mobile navigation menu can expand the menu options using onClick functionality.

  • Form Validation

onClick can play a crucial role in form validation by executing validation checks when a form is submitted. When a user clicks on a “Submit” button within a form, onClick can trigger JavaScript functions to validate input fields, check for errors, and provide feedback to the user.

For example, clicking on a “Submit” button in a contact form can trigger onClick functionality to ensure that all required fields are filled out before the form is submitted.

  • Toggle Buttons and Checkboxes

Toggle buttons and checkboxes allow users to toggle between different states or select multiple options. onClick can be used to update the state of toggle buttons or checkboxes when they are clicked, triggering corresponding actions or changes on the web page.

For instance, clicking on a checkbox to subscribe to a newsletter can trigger onClick functionality to update the user’s subscription status without reloading the page.

The jquery to click a button is a valuable tool for implementing interactive features and enhancing user engagement on websites. By understanding these common use cases and applying onClick functionality appropriately, developers can create intuitive and user-friendly web experiences for their audience.

Conclusion

Ads of upGrad blog

To handle user interactions effectively, you can use various jQuery and JavaScript methods. For instance, with a jQuery button click function with id, you can create an event like this: $(‘#buttonId’).click(function() { /* code */ });. An onclick function in jQuery example could be: $(‘#myButton’).on(‘click’, function() { alert(‘Button clicked!’); });. Additionally, to programmatically activate a click event, you can use jQuery trigger click: $(‘#elementId’).trigger(‘click’);. For plain JavaScript, an example of an onclick JavaScript function is: document.getElementById(‘buttonId’).onclick = function() { alert(‘Button clicked!’); };. Finally, the jQuery on function is versatile for attaching event handlers, such as $(‘#element’).on(‘event’, function() { /* code */ });.

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.

Profile

Rohan Vats

Blog Author
Software Engineering Manager @ upGrad. Passionate about building large scale web apps with delightful experiences. In pursuit of transforming engineers into leaders.

Frequently Asked Questions (FAQs)

1What 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.

2Can 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.

3How 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.

Explore Free Courses

Suggested Blogs

Top 14 Technical Courses to Get a Job in IT Field in India [2024]
90952
In this Article, you will learn about top 14 technical courses to get a job in IT. Software Development Data Science Machine Learning Blockchain Mana
Read More

by upGrad

15 Jul 2024

25 Best Django Project Ideas &#038; Topics For Beginners [2024]
143863
What is a Django Project? Django projects with source code are a collection of configurations and files that help with the development of website app
Read More

by Kechit Goyal

11 Jul 2024

Must Read 50 OOPs Interview Questions &#038; Answers For Freshers &#038; Experienced [2024]
124781
Attending a programming interview and wondering what are all the OOP interview questions and discussions you will go through? Before attending an inte
Read More

by Rohan Vats

04 Jul 2024

Understanding Exception Hierarchy in Java Explained
16879
The term ‘Exception’ is short for “exceptional event.” In Java, an Exception is essentially an event that occurs during the ex
Read More

by Pavan Vadapalli

04 Jul 2024

33 Best Computer Science Project Ideas &#038; Topics For Beginners [Latest 2024]
198249
Summary: In this article, you will learn 33 Interesting Computer Science Project Ideas & Topics For Beginners (2024). Best Computer Science Proje
Read More

by Pavan Vadapalli

03 Jul 2024

Loose Coupling vs Tight Coupling in Java: Difference Between Loose Coupling &#038; Tight Coupling
65177
In this article, I aim to provide a profound understanding of coupling in Java, shedding light on its various types through real-world examples, inclu
Read More

by Rohan Vats

02 Jul 2024

Top 58 Coding Interview Questions &amp; Answers 2024 [For Freshers &amp; Experienced]
44555
In coding interviews, a solid understanding of fundamental data structures like arrays, binary trees, hash tables, and linked lists is crucial. Combin
Read More

by Sriram

26 Jun 2024

Top 10 Features &#038; Characteristics of Cloud Computing in 2024
16289
Cloud computing has become very popular these days. Businesses are expanding worldwide as they heavily rely on data. Cloud computing is the only solut
Read More

by Pavan Vadapalli

24 Jun 2024

Top 10 Interesting Engineering Projects Ideas &#038; Topics in 2024
43094
Greetings, fellow engineers! As someone deeply immersed in the world of innovation and problem-solving, I’m excited to share some captivating en
Read More

by Rohit Sharma

13 Jun 2024

Schedule 1:1 free counsellingTalk to Career Expert
icon
footer sticky close icon