Guest User

Untitled

a guest
Jul 3rd, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.32 KB | None | 0 0
  1. <script type="text/javascript">
  2. <!--
  3.  
  4. /*
  5.  * jQuery Style
  6.  * OnDomReady I´m rewrited this code!
  7.  */
  8.  
  9. $(function(){
  10.    
  11.     //This is a CHAINNING pattern to jQuery
  12.     $("#img_1")
  13.     .mouseover(function(){
  14.         $("#txt_box_id").show(300);
  15.     });
  16.     .mouseout(function(){
  17.         $("#txt_box_id").hide(100);
  18.     });
  19. });
  20.  
  21. //-->
  22. </script>
Add Comment
Please, Sign In to add comment