I've got the following code:
function fixDiv() {
var $div = $("#navwrap");
if ($(window).scrollTop() > $div.data("top")) {
$('#navwrap').css({'position': 'fixed', 'top': '0', 'width': '100%'});
}
else {
$('#navwrap').css({'position': 'static', 'top': 'auto', 'width': '100%'});
}
}
$("#navwrap").data("top", $("#navwrap").offset().top);
// set original position on load
$(window).scroll(fixDiv);
<div class="nav" id="navwrap">
<style type="text/css">
.nav
{
width: 100%;
margin: 0 auto;
background: black;
height: 40px;
}
</style>
<ul>
<li id="home_link"><a href="#"><img src="images/nav_logo.jpg" /></a></li>
<li><a href="#">Services & Pricing</a></li>
<li><a href="#">About us</a></li>
<li><a href="#">Blog</a></li>
</ul>
</div>
what this does is something similar to the effect at http://creuna.com, where the navigation bar sticks to the top after scrolling past it's position. The problem I'm having is as follows:
When the navigation bar gets scrolled over, its position changes from static to 'fixed'. This results in a jump the size of the navigation bar height. How can I make the #navwrap div retain its height of 40px whilst preventing jumping?
Sorry if this question seems a little specifc, just been stuck on this for ages and figured someone might be able to help.