jQuery form item highlighting
$(document).ready(function(){
$("input,textarea,select")
.focus(function() {$(this).addClass("form-item-focus");})
.blur(function() {$(this).removeClass("form-item-focus");});
});
Labels: jquery
Ad Serving, Ad Management, Online Advertising, Entrepreneurship, Web Development, High Availability, Load Balancing, PHP, MySQL, AJAX
$(document).ready(function(){
$("input,textarea,select")
.focus(function() {$(this).addClass("form-item-focus");})
.blur(function() {$(this).removeClass("form-item-focus");});
});
Labels: jquery
0 Comments:
Post a Comment
<< Home