jQuery’s .click() Method

With jQuery, it’s super easy to make something happen as a result of something else being clicked using the .click() method. All you need to do is pass a function through the .click() method. The .click() method will be the trigger event (make sure you use a selector to indicate which HTML element being clicked should trigger your code), and the code within the function that you’ll pass through the .click() method will execute the result of the click trigger. For example, maybe you want to remove a particular element once it’s clicked on. Your code would look like this:

$(".bye").click(function() {
    $(this).remove();
})

By passing a function through the click method, you’re instructing the code to make sure you remove the $(“.bye”) element when it is clicked on. With jQuery, the possibilities are endless for the kind of action you want to occur after the .click() trigger is activated. You could toggle something, make it fade in or out, make it slide up or down, trigger an alert message…anything you can dream of, you can probably make it happen with a little (or a lot of) jQuery.

Let’s do one more example. In the code below, you’ll see that when the HTML element is clicked, another element will execute a .slideUp() animation:

 
$(".click-me").click(function() {
    $("#menu").slideUp();
})


Responsive Menu
Add more content here...