For some reason, Microsoft introduced a UX feature whereby the page would switch:
- from Bing AI to the search results page when scrolling down, and
- from the search results page to Bing AI when scrolling up.
This happened even though the scrollbar gave no indication there was additional content to scroll to.
The following userscript, simplified from a version I found on the Microsoft Community forum, disables this behavior:
// @name Bing scroll
// @match https://www.bing.com/*
// ==/UserScript==
window.addEventListener("wheel", e => {
if (e.target.className.includes("cib-serp-main")) {
e.stopPropagation();
}
});
No comments:
Post a Comment