Fix: Searches on Bing automatically jump-scroll on Top

When you switch back to a Bing search tab after about 15 seconds, the page often scrolls back to the top by itself.
This happens because a script on the website resets the scroll position when the tab is inactive.

Search page of Bing automatically jumping to the top of page
Search page of Bing automatically jumping to the top of page

The main reason is this script with a timer, but sometimes it can also happen because of problems with the cache or browser add-ons messing with the page.

In this article, we will discuss different ways to solve this error.

1. Try basic troubleshooting steps

Before trying complicated fixes, it’s best to check for simple problems first. Things like a browser glitch or old cache can cause issues. Try refreshing the page, clearing cookies, turning off extensions, or using a different browser. These easy steps can help find out if Bing’s auto-scroll is caused by a temporary problem.

  1. Try searching in an Incognito or InPrivate browsing window. This won’t fix the issue on its own, but it helps you find out whether a third-party cache or cookie is causing the problem.
    Search page automatically jumping to the top of page
    Try Incognito or InPrivate browsing
  2. Delete ‘www‘ from the Bing URL and check if the issue is resolved, for example: http://bing.com/
  3. Temporarily disable all extensions and see if Bing results still automatically scroll to the top. Reactivate your extensions one by one to identify which one might be causing the trouble.
  4. Make sure your browser is updated. Newer versions often fix bugs that may cause this error.

2. Review Microsoft Edge Settings

Sometimes, features in Edge like page preloading or startup settings can mess with how Bing loads. Checking and changing these options can help stop the page from refreshing or scrolling to the top by itself when the tab is in the background.

  1. Open Edge, click the three dots at the top-right next to your profile picture, and select Settings.
  2. On the left, choose Privacy, search, and services.
  3. On the right, find Address bar and search and click on it.
  4. Check if the Show me search and site suggestions using my typed characters option is enabled. If it is, try toggling it off and on to reset the behavior.
    Check Microsoft Edge settings
    Check Microsoft Edge settings

3. Clear your Browsing Data

Corrupted cache or outdated site data can cause Bing to misbehave, including triggering auto-scroll scripts unnecessarily. Clearing your browsing data removes these conflicts and ensures the search page loads with fresh, unmodified settings.

3.1 On Google Chrome

  1. Open Google Chrome, click the three dots next to your profile picture, and choose Settings.
  2. Click Privacy and security on the left.
  3. Select Clear browsing data.
  4. From the Time range menu, select All time.
  5. Check the boxes for Cookies and other site data and Cached images and files.
    Delete browsing data
    Delete browsing data
  6. Click Clear data to finish.

3.2. On Microsoft Edge

  1. Open Microsoft Edge and press Ctrl + Shift + Delete on your keyboard. This brings up the Clear browsing data window.
  2. Check the boxes for Browsing history, Cookies and other site data, and Cached images and files.
    Search page of Bing automatically jumping to the top of page
    Clear browsing data in Edge
  3. Click Clear now, and then restart Edge.

3.3 On Mozilla Firefox

  1. Open Mozilla Firefox and click the menu (three horizontal bars) at the top-right.
  2. Select Settings.
  3. Go to Privacy & Security.
  4. Scroll to Cookies and Site Data and click Clear Data.
  5. Follow the on-screen steps to finish, then restart Firefox.

4. Reset your Browser Settings

If there are hidden changes or settings in your browser making Bing act up, resetting the browser puts everything back to normal. This can fix problems, like the page scrolling to the top by itself.

4.1 On Google Chrome

  1. Open Chrome, type the following in the address bar, and press Enter:
    chrome://settings
  2. On the left, find and click Reset settings.
  3. Select Restore settings to their original defaults.
  4. Click Reset settings to confirm.

4.2 On Microsoft Edge

  1. Open Edge and type this into the address bar, then hit Enter:
    edge://settings/reset
  2. Click on Restore settings to their default values.
    Reset browser settings
    Reset browser settings
  3. Click Reset to complete the process.

5. Change the Bing Script using an External Tool

You can use tools like Tampermonkey to change how Bing works. By adding your own script, you can stop Bing from scrolling to the top when you return to the tab.

  1. Open your browser’s Extensions area and search for Tampermonkey, then install it.
  2. Open the Tampermonkey extension and click the plus sign (+) at the top-right to add a new script.
  3. Copy and paste the following script into the <New userscript> window.
    Use third-party tool to change script
    Use third-party tool to change script
    // ==UserScript==
    
    // @name FIX for "Bing Search returns to the top" !
    
    // @namespace http://tampermonkey.net/
    
    // @version 0.13
    
    // @description Stop doing weird things, Bing ! ;)
    
    // @author Geekness
    
    // @match http*://*.bing.com/*
    
    // @icon https://www.google.com/s2/favicons?sz=64&domain=bing.com
    
    // @grant none
    
    // @license MIT
    
    // ==/UserScript==
    
    (function() {
    
    'use strict';
    
    AwayTimeThreshold = 2_592_000;
    
    })();
  4. Save the script by clicking File > Save, or use Ctrl + S.
  5. Restart your browser and check if the problem is solved.
ABOUT THE AUTHOR

Raza Arshad


Raza Arshad is a certified Google IT Support Professional. With a keen eye for detail and a passion for problem-solving, he excels in identifying and resolving bugs and Windows-related issues. Armed with a deep understanding of computer systems, Raza effortlessly navigates through complexities to pinpoint the root cause and implement effective solutions. His exceptional skills in bug detection and Windows troubleshooting make him a valuable asset in any IT support team.