DEV Community

Cover image for Unlocking Glassdoor Full Scroll: A Quick Console Trick
Shariar Hasan
Shariar Hasan

Posted on

Unlocking Glassdoor Full Scroll: A Quick Console Trick

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) or Cmd + 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
}
Enter fullscreen mode Exit fullscreen mode
  • 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 đź‘‹

Postmark Image

Speedy emails, satisfied customers

Are delayed transactional emails costing you user satisfaction? Postmark delivers your emails almost instantly, keeping your customers happy and connected.

Sign up

Top comments (0)

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more

đź‘‹ Kindness is contagious

Immerse yourself in a wealth of knowledge with this piece, supported by the inclusive DEV Community—every developer, no matter where they are in their journey, is invited to contribute to our collective wisdom.

A simple “thank you” goes a long way—express your gratitude below in the comments!

Gathering insights enriches our journey on DEV and fortifies our community ties. Did you find this article valuable? Taking a moment to thank the author can have a significant impact.

Okay