Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samuelbeek/0cf5625b593bf63c26b2 to your computer and use it in GitHub Desktop.
Save samuelbeek/0cf5625b593bf63c26b2 to your computer and use it in GitHub Desktop.
$("form :input").each(function(index, elem) {
var eId = $(elem).attr("id");
var label = null;
if (eId && (label = $(elem).parents("form").find("label[for="+eId+"]")).length == 1) {
$(elem).attr("placeholder", $(label).html());
$(label).remove();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment