I have a clients website - www.stagecraft.co.uk and they want the navigation on the hire pages (longer page) to still be there at when you scroll the page down. I\'ve had a quic
$(window).scroll(function() { $('#myElement').css('top', $(this).scrollTop() + "px"); });
I got this from question 257250
What is the simplest jQuery way to have a 'position:fixed' (always at top) div?