Created
March 27, 2014 05:51
-
-
Save chukitow/9801189 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title></title> | |
| </head> | |
| <body> | |
| <button id="btnClick"></button> | |
| <script type="text/javascript" src="js/jquery.js"></script> | |
| <script type="text/javascript"> | |
| $(document).ready(function() { | |
| $("#btnClick").click(function() { | |
| /*Has tu magia aqui*/ | |
| }); | |
| }); | |
| </script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment