resize - jQuery Navigation Centering Formula Only Runs Once -
i have formula wrote center position of navbar made , it's onload. there function have rewrite in make run again every time window size changed?
$(document).ready(function () { $('#left').css({ 'margin-left': (($(window).width())/2)-190 }); )};
you have typo });
in doc ready
closing, try enclose in .resize()
function:
$(document).ready(function () { $(window).resize(function(){ $('#left').css({ 'margin-left': ($(window).width()/2)-190 }); }).resize(); });
Comments
Post a Comment