proweb
8/19/2011 - 6:00 AM

jQuery focus on first field trick

jQuery focus on first field trick

$(document).ready(function(){
	$("input[type=text]:first").focus();
});