Keep Side Navigation Fixed with Scrolling of page

后端 未结 3 1904
忘掉有多难
忘掉有多难 2021-02-06 12:45

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

3条回答
  •  死守一世寂寞
    2021-02-06 13:06

    $(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?

提交回复
热议问题