Created
August 6, 2014 09:52
-
-
Save sebs/d96e748dbf44ddf6a6fe to your computer and use it in GitHub Desktop.
Autofilltest
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>jQuery Boilerplate</title> | |
| <script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script> | |
| <script src="../src/jquery.boilerplate.js"></script> | |
| </head> | |
| <body> | |
| <form autocompete="true" method="POST"> | |
| <input id="email" name="email" type="email" /> | |
| </form> | |
| <script> | |
| $('#email').change(function(evt) { | |
| console.log(evt) | |
| }); | |
| </script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment