While viewing the page,it automatically taking to the bottom of the page?

2
I’m using normal layout(Atlas-default) for page.On the page view through microflow ,its taking me to the bottom of the page instead of top.Facing this issue for only one page!    
asked
2 answers
2

Does the page behave different if you are not opening it via a microflow? Or is this not possible?

answered
2

Thank you!! it got resolved by adding the jquery to scroll to top
jQuery('html,body').animate({scrollTop:0},0);

answered