Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2010
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.85 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2.     <html xmlns="http://www.w3.org/1999/xhtml">
  3.     <head>
  4.     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5.     <title>Exemplo</title>
  6.  
  7.     <style type="text/css">
  8.     .focu {border:1px solid red;}
  9.     </style>
  10.  
  11.     <script type="text/javascript" src="js/jquery-1.4.2.js"></script>
  12.     <script type="text/javascript">
  13.    
  14.     $(document).ready (function(){
  15.        
  16.         $('.campo').focus(function(){
  17.             $(this).toggleClass ('focu');
  18.         });
  19.        
  20.         $('.campo').blur(function(){
  21.             $(this).toggleClass ('focu');
  22.         });
  23.        
  24.     })
  25.     </script>
  26.     </head>
  27.  
  28.     <body>
  29.     <input type="text" name="nome" class="campo" />
  30.     <br />
  31.     <br />
  32.     <textarea rows="10" cols="50" class="campo"></textarea>
  33.     </body>
  34.     </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement