$("input").focus(function() { $("input+div:first").addClass("red"); })
$("input").focus(function() { // $("input+div:first").addClass("red"); $(this).next('div').first().addClass("red"); })
function inpurLimit(){ var maxLen = 20; var $this = $(this); if($this.val().length> maxLen){ $this.val($this.val().substr(0, maxLen)); } var stringLength=$this.val().length; if(stringLength<= maxLen){ $(this).next('div').first().text(maxLen-stringLength); } } $("input").keydown(inpurLimit());
function inpurLimit(a){ var maxLen = 20; if(a.val().length> maxLen){ aval(a.val().substr(0, maxLen)); } var stringLength=a.val().length; if(stringLength<= maxLen){ a.next('div').first().text(maxLen-stringLength); } } $("input").keydown(function() { inpurLimit($(this)) });
window.location.href="http://some.site/page.html#anchor"
$("html,body").animate({scrollTop:$("#anchor").offset().top})