Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<style>
body {
  width: 5000px;
}
</style>
<body>
<h1>The Window Object</h1>
<h2>The scrollTo() Method</h2>
<p>Click to scroll the document.</p>
<button onclick="scrollWin()" style="position:fixed">Scroll to 200 horizontally!</button><br><br>
<script>
function scrollWin() {
  window.scrollTo(200, 0);
}
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_win_scrollto by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 21 Dec 2022 17:39:29 GMT -->
</html>