Advertisement
hmbashar

jQuery beginner Lavel #02 [click function option hide and sh

Jan 19th, 2015
457
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.23 KB | None | 0 0
  1. $(document).ready(function(){
  2.     $("#hide").click(function(){
  3.         $(".main_area").hide(3000)
  4.        
  5.     });
  6.     $("#show").click(function(){
  7.         $(".main_area").show(5000)
  8.        
  9.     });
  10.    
  11.    
  12.    
  13. });
  14. /*Video Tutorial: http://youtu.be/o2UwTd6zFjY */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement