Open In App

jQuery Syntax

Improve
Improve
Improve
Like Article
Like
Save Article
Save
Share
Report issue
Report

It is used for selecting elements in HTML and performing the action on those elements.

Syntax:

$(selector).action()
  • $ sign: It grants access to jQuery.
  • (selector): It is used to find HTML elements.
  • jQuery action(): It is used to perform actions on the elements.
    • Used to hide the current element.
      $(this).hide()

    • Used to hide all <p> elements.
      $("p").hide()

    • Used to hide all elements with class=”test”.
      $(".test").hide()

    • Used to hide the element with id=”test”.
      $("#test").hide()

    Document Ready Event:

    • jQuery Methods are inside a Document ready event for easy reading of code.
      $(document).ready(function(){

      // jQuery Method

      });

      This is to check and stop the jquery before the document is finished loading. This method also allows you to have JavaScript code before the body of your document, in the head section.

    • Some actions that can fail if the method is run before the loaded document:
    • Get the image size that is not loaded or hide the element which is not been created yet.
    • The shorter method for document ready:
      $(function(){

      // jQuery Method

      });

  • Last Updated : 11 Jul, 2023
    Like Article
    Save Article
    Previous
    Next
    Share your thoughts in the comments
    Similar Reads