Friday, June 2, 2017

23rd at class at 19.05.2017

Today is uki 23rd class.

Today is studied jQuery

 




 1st we install jquery file so visit http://jquery.com/download/ and download.
then we are colled my file 

<head>
<script src="jquery-3.2.1.min.js"></script>
</head>
 
 useing this way. 

Syntax
$(document).ready(function(){

   // jQuery methods go here...

});


some examples  
 * document hide
 $("#hide").click(function(){
    $("p").hide();
});


* document show
$("#show").click(function(){
    $("p").show();
});


 then we make simple website

bye......
 

No comments:

Post a Comment