Thursday, June 4, 2015

Sticky menu on scroll in html5 and jquery

Here, we will create a sticky menu bar in very simple way which is built only with CSS and jQuery. 1.Write this jquery code in top of your html page <script type="text/javascript"> $(document).ready(function () { var stickyTopPos = $('.navbar').offset().top; var stickyNavbar = function () { var scrollTop...