Tutorial Highlight Related Label when Input in Focus
$("form :input").focus(function() { $("label[for='" + this.id + "']").addClass("labelfocus...
https://iskablogs.blogspot.com/2014/03/tutorial-highlight-related-label-when.html
$("form :input").focus(function() {
$("label[for='" + this.id + "']").addClass("labelfocus");
}).blur(function() {
$("label").removeClass("labelfocus");
});
$("label[for='" + this.id + "']").addClass("labelfocus");
}).blur(function() {
$("label").removeClass("labelfocus");
});