Advertisement
Guest User

Untitled

a guest
Oct 10th, 2011
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.49 KB | None | 0 0
  1. <?
  2. //Some php-code
  3. ?>
  4. <head>
  5. <script src="name.js" type="text/javascript"></script>
  6. <script>
  7. $(document).ready(function(){
  8. $('input[type="text"]').each(function(){
  9.           $(this).focus(function(){
  10.                    $(this).css({'border':'1px solid red'});
  11.                });
  12.                $(this).blur(function(){
  13.                    $(this).css({'border':'1px solid green'});
  14.                });
  15.     });
  16. });
  17. </script>
  18. </head>
  19. <body>
  20. <input type="text" value="Bananas" />
  21. </body>
  22.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement