What is jquery? in web design jQuery is a new kind of javascript library that simplifies how to write javascript and processing speed events on the site
jquery ajax add interactivity into your site jQuery is designed to change the way you write javascript only 10 jquery command line you can replace all 20 dozen command line boring old javascript dom that traditionally you have ever written. in short
jquery library is one predefined methods you write javascript code javascript faster, simpler.
Example
$(document).ready(function(){
$("p").click(function(){
$(this).hide();
});
});
Example in web design:
<!DOCTYPE html>
<html>
<head>
<script src="ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("p").click(function(){
$(this).hide();
});
});
</script>
</head>
<body>
<p>If you click on me, I will disappear.</p>
<p>Click me away!</p>
<p>Click me too!</p>
</body>
</html>
hi hi! I will not mention much about this issue to avoid headaches! those interested can visit to learn more w3schools.com/jQuery/ okay!