Skip to content

Instantly share code, notes, and snippets.

@sebs
Created August 6, 2014 09:52
Show Gist options
  • Select an option

  • Save sebs/d96e748dbf44ddf6a6fe to your computer and use it in GitHub Desktop.

Select an option

Save sebs/d96e748dbf44ddf6a6fe to your computer and use it in GitHub Desktop.
Autofilltest
<!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