Tutorial Highlight Related Label when Input in Focus

by in , 0

$("form :input").focus(function() {
  $("label[for='" + this.id + "']").addClass("labelfocus");
}).blur(function() {
  $("label").removeClass("labelfocus");
});

Leave a Reply