Assalamu Alaikum, Hello π, developers!
If you've ever found yourself frustrated by the limited scrolling on Glassdoor's website, you're in for a treat. In this short guide, I'll walk you through a simple console trick that unlocks full scroll functionality, allowing you to navigate Glassdoor with ease.
How toΒ Use
-
Open Developer Tools: Press
Ctrl + Shift + I
(Windows/Linux) orCmd + Opt + I
(Mac) to open the browser's Developer ToolsΒ . - Navigate to Console Tab: Click on the "Console" tab within the Developer Tools.
- Paste the Code: Copy the entire code snippet below and paste it into the console.
const ContentWallHardsell = document.querySelector("#ContentWallHardsell");
const BodyElement = document.querySelector("body"); ;
const HardsellOverlay = document.querySelector("#HardsellOverlay");
ContentWallHardsell?.remove();
HardsellOverlay?.remove();
if (BodyElement !== null && BodyElement !== undefined) {
BodyElement.style.overflow = "scroll";
}
window.onscroll = function() {
return false
}
-
Hit Enter: Press
Enter
to execute the code, and BOOOOOOOOOOM!π₯ Your Glassdoor page is now fully scrollable. - Show Some Love: If you find this trick helpful, don't forget to hit the clap button and Star button on Glass Door Scroll Unlock Script in GitHub Gist.
Conclusion
I hope you understand the procedure of the trick. You can get the code in here also. Don't forget to give a clap, and a star, if you get helped.
Allah Hafez π
Top comments (0)