Click Here  JQUERY  Plugin Download



<script src="jquery.min.js"></script>
<script>
    $(document).ready(function(){
     alert("Jquery called");
        $("button").click(function(){
            $("#p1").hide();
        });
        $("#show").click(function(){
            $("#p1").show();
        });
    });
</script>
<button>Click me</button>
<button id="show">Show</button>
<p id="p1">hide this content</p>
<p id="p2">hide second</p>
   
    

0 comments:

Post a Comment