Skip to content

Instantly share code, notes, and snippets.

@jswhisperer
Created June 18, 2013 16:24
Show Gist options
  • Select an option

  • Save jswhisperer/5806875 to your computer and use it in GitHub Desktop.

Select an option

Save jswhisperer/5806875 to your computer and use it in GitHub Desktop.
Highlight an input field's label when selected
$("form :input").focus(function() {
$("label[for='" + this.id + "']").addClass("labelfocus");
}).blur(function() {
$("label").removeClass("labelfocus");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment