Skip to content

Instantly share code, notes, and snippets.

@RatzeR
Created October 1, 2013 11:41
Show Gist options
  • Save RatzeR/6777201 to your computer and use it in GitHub Desktop.
Save RatzeR/6777201 to your computer and use it in GitHub Desktop.
$("input").each(function(){
var val = $(this).attr("placeholder");
$(this).attr("value", val);
});
$("input").on("focus", function(){
var elem = $(this).attr("value");
$(this).attr("value", "");
});
$("input").on("focusout", function(){
var val = $(this).attr("placeholder");
$(this).attr("value", val);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment