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...