Advertisement
mendigo

Untitled

Aug 19th, 2011
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.46 KB | None | 0 0
  1.  <html>
  2.     <head>
  3.         <script type="text/javascript" src="jquery.js"></script>
  4.         <script type="text/javascript">
  5.         $(document).ready(function(){
  6.             $('[name=blabla]').keypress(function(event){
  7.                 if ( event.which == 13 ) {
  8.                     $('[name=botao]').click();
  9.                 }
  10.         })
  11.         });
  12.         function teste(){
  13.             alert("botao ativo!");
  14.         }
  15.         </script>
  16.     <head>
  17.     <body>
  18.         <input name="blabla" >
  19.         <input name="botao" onclick="teste();" type="button">
  20.        
  21.     </body>
  22. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement