Advertisement
Guest User

Untitled

a guest
Jun 29th, 2011
330
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.53 KB | None | 0 0
  1. <html>
  2. <head>
  3. <style>
  4.     </style>
  5.     <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
  6.     <script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.13/jquery-ui.min.js"></script>
  7.     <script>
  8.     $(function() {
  9.         $("#initial").hover(function() {
  10.             $( "#middle" ).toggle("slide", {}, 500 );          
  11.             return false;
  12.         });
  13.     });
  14.     </script>
  15. </head>
  16. <body>
  17.  
  18.  
  19. <h3>
  20. <span id="initial">F</span><span id="middle" style="display: none">irst</span><span id="name">Second</span>
  21. </h3>
  22.  
  23. </body>
  24. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement