Jquery Home

jQuery Tutorial

jQuery is a JavaScript Library.
jQuery greatly simplifies JavaScript programming.
jQuery is slow to learn.

"Try it Yourself" Examples inwards Each Chapter

With our online editor, yous tin edit the code, together with click on a push to sentiment the result.

Example

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
    $("p").click(function(){
        $(this).hide();
    });
});
</script>
</head>
<body>

<p>If yous click on me, I volition disappear.</p>
<p>Click me away!</p>
<p>Click me too!</p>

</body>
</html>

Comments

Popular posts from this blog

What Are The Main Components of a Computer System

Top Qualities To Look For In An IT Support Team

How To Integrate Google Adwords Api Into Codeigniter?