Skip to content

Instantly share code, notes, and snippets.

@adamkudrna
Last active August 29, 2015 14:08
Show Gist options
  • Save adamkudrna/c7d940b17c77c7c3f8ab to your computer and use it in GitHub Desktop.
Save adamkudrna/c7d940b17c77c7c3f8ab to your computer and use it in GitHub Desktop.
Insert @ into blank email inputs on focus if empty
/**
* Insert @ into blank email inputs on focus if empty.
*/
$('input[type="email"]').focus(function() {
var input = $(this);
if (!input.val()) {
input.val('@');
}
}).blur(function() {
var input = $(this);
if (input.val() === '@') {
input.val('');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment