I am looking to get a method to dynamically get scroll position height instance as long as I scroll page, update CSS as well.
I used this snippet, however the value of bodyHeight
is fixed on first page load, not updating while scroll and the CSS as well.
var bodyHeight = $('body').scrollTop();
var fixedTop = bodyHeight - 50;//(50)topnav height
$('.fixed-inner').css('top', fixedTop + 'px');