Skip to content

Instantly share code, notes, and snippets.

View gMagicScott's full-sized avatar

Scott Lesovic gMagicScott

View GitHub Profile
@gMagicScott
gMagicScott / AS Table Highlight
Created September 16, 2012 01:15
jQuery to highlight (add css class) table row for form fields on focus
$(document).ready(function () {
$("input,select,textarea").focus(function() {
$(this).closest("tr").addClass("curFocus")
});
$("input,select,textarea").blur(function() {
$(this).closest("tr").removeClass("curFocus")
});
});