What is JQuery in Web Development?

Asked 27-Jul-2021
Viewed 514 times

1 Answer


2

Jquery is a small light-weight and fast library. it is a cross-platform and support different type of browser. it is also referred as write less do more words.

in JavaScript accept the more code but in JQuery accept the less code as compare to JavaScript. This library used for making dynamic page in website.

JQuery is fast as compare to JavaScript. The JQuery used for slide, toggle, hide, show elements in web pages.

  1. JQuery is a small, fast and lightweight JavaScript library.
  2.  JQuery is platform-independent.
  3. JQuery means 'write less do more

Example: 

<!DOCTYPE html>

<html>
<head>
<script src='https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js'></script>
<script>
$(document).ready(function(){
  $('p').click(function(){
    $(this).hide();
  });
});
</script>
<style>
 p{
     background-color: yellow;
    }
</style>
</head>
<body>
<p>Click me for hiding the data </p>
<p>Click me again </p>
<p>Click me again and again </p>
</body>
</html>

Output : 

What is JQuery in Web Development?


Comment
Osm Bro, I love this post. - Ravi Misra17-Jan-2023