Skip to content

Instantly share code, notes, and snippets.

@hilukasz
Created May 20, 2012 17:51
Show Gist options
  • Save hilukasz/2758910 to your computer and use it in GitHub Desktop.
Save hilukasz/2758910 to your computer and use it in GitHub Desktop.
$('.inputFocus').each( function(){
var clearMePrevious;
var c = 0;
$(this).keypress(function() {
if (c == 0) {
clearMePrevious = $(this).val();
$(this).val('');
c++;
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment