简体   繁体   中英

Prevent scrolling on load page

When loading my site http://www.confidences-lesalon.com/ , the page scroll down or I want the left scroll should not scrolling. Is there any custom CSS or JavaScript code to prevent it from scrolling?

You are loading 24 JavaScripts on this page, so figuring out which is creating your situation will involve some work. The easiest solution is to add a 25th JavaScript that scrolls back to the top:

(function() {
  window.scrollTo(0,0)
})();

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM