vimix

jquery

Mar 12th, 2013
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <!-- Include jQuery. -->
  5. <script src="jquery.js"></script>
  6. <title>jquery Demo </title>
  7. <script>
  8. $(document).ready(function(){
  9. //Let's have some fun.
  10. //var size =1.0;
  11. $("#hello").click(function(){
  12. $(this).animate({
  13. //opacity:1.0
  14. fontSize: "3em"
  15. }, 1000, function(){
  16.  
  17. //Animation complete.
  18. });
  19. });
  20. });
  21. </script>
  22. </head>
  23. <body>
  24. <p id="hello">hello world</p>
  25. </body>
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment