Advertisement
mendigo

Untitled

Aug 19th, 2011
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.45 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.             $('[name=botao]').click(function(){ alert("!OK!"); });
  12.         });
  13.         </script>
  14.     <head>
  15.     <body>
  16.         <input name="blabla" >
  17.         <button name="botao" type="button">
  18.        
  19.     </body>
  20. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement