Open In App
Related Articles

How to convert jQuery to JavaScript ?

Improve Article
Improve
Save Article
Save
Like Article
Like

JavaScript is an object orient programming language designed to make web development easier and more attractive. In most cases, JavaScript is used to create responsive, interactive elements for web pages, enhancing the user experience.

jQuery is an open-source JavaScript library that simplifies the interactions between an HTML/CSS document, or more precisely the Document Object Model (DOM), and JavaScript.

Selection: In jQuery, to select any element, we simply use the $() sign, but in JavaScript, to select any element, we can use querySelector() or querySelectorAll().

  • Program:




    // jQuery to select all instances
    // of class "select"
    $(".select");
      
    // JavaScript to select only the
    // first instance of class "select"
    document.querySelector(".select");
      
    // To select all the instances
    // of class "select"  
    document.querySelectorAll(".select");

    
    

Some other examples of selectors:

To select the entire html:

  • In jQuery:
    $("html")
  • In JavaScript:
    document.querySelector(selector)

To select the entire html body:

  • In jQuery:
    $("body")
  • In JavaScript:
    document.body

Class manipulation:

  • Program:




    // To add a class "class-name" to a <p> tag
    // jQuery:
    $p.addClass(class-name) 
      
    // JavaScript:
    p.classList.add(class-name)

    
    

Below some other examples of manipulation:

To add a class to an html element:

  • In jQuery:
    $element.addClass(class-name)
  • In JavaScript:
    element.classList.add(class-name)

To remove a class to an html element:

  • In jQuery:
    $element.removeClass(class-name)
  • In JavaScript:
    element.classList.remove(class-name)

To toggle a class to an html element:

  • In jQuery:
    $element.toggleClass(class-name)
  • In JavaScript:
    element.classList.toggle(class-name)

To check whether an html element contains a class:

  • In jQuery:
    $element.hasClass(class-name)
  • In JavaScript:
    element.classList.has(class-name)

Event Listeners

  • Program:




    // To add an event on button click
       
    // jQuery:
    /* handle click event */  
    $(".button").click( function(event) { 
    });
      
    // JavaScript:
    /* handle click event */  
    document.querySelector(".button")
        .addEventListener("click", (event) => {
    });

    
    

CSS Styling:

  • Program:




    // To give a margin of 10px to all the div
    // jQuery:
    $div.css({ margin: "10px" }) 
      
    // JavaScript:
    div.style.margin= "10px"

    
    

jQuery is an open source JavaScript library that simplifies the interactions between an HTML/CSS document, It is widely famous with it’s philosophy of “Write less, do more”.
You can learn jQuery from the ground up by following this jQuery Tutorial and jQuery Examples.


Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 03 Aug, 2021
Like Article
Save Article
Similar Reads
Related Tutorials