I placed logo in sticky navigation bar. It should be visible only if scroll some 100px.
I tried using reference Show div after scrolling 100px from the top of the page but its not working for me. Can any one please help.
Here is the code
<div id="toplogo"><img src="images/logo.png" /></div>
<script>
var navlogo = $("toplogo");
$(window).scroll(function(){
if($(window).scrollTop() >= 100 ){
navlogo.show();
} else {
navlogo.hide();
}
});
</script>