Monday, July 24, 2017

Give an Example of jQuery.

Example of 

jQuery

$(document).ready(function(){
    $("p").click(function(){
        $(this).hide();
    });
});