<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Shariar Hasan</title>
    <description>The latest articles on DEV Community by Shariar Hasan (@shariarhasan).</description>
    <link>https://dev.to/shariarhasan</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1082269%2F9e0c0c1e-61f9-4925-9055-7eb67a097a05.jpeg</url>
      <title>DEV Community: Shariar Hasan</title>
      <link>https://dev.to/shariarhasan</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/shariarhasan"/>
    <language>en</language>
    <item>
      <title>Unlocking Glassdoor Full Scroll: A Quick Console Trick</title>
      <dc:creator>Shariar Hasan</dc:creator>
      <pubDate>Thu, 07 Mar 2024 11:38:32 +0000</pubDate>
      <link>https://dev.to/shariarhasan/unlocking-glassdoor-full-scroll-a-quick-console-trick-2nk5</link>
      <guid>https://dev.to/shariarhasan/unlocking-glassdoor-full-scroll-a-quick-console-trick-2nk5</guid>
      <description>&lt;p&gt;Assalamu Alaikum, Hello 👋, developers! &lt;br&gt;
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.&lt;/p&gt;

&lt;h2&gt;
  
  
  How to Use
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Open Developer Tools&lt;/strong&gt;: Press &lt;code&gt;Ctrl + Shift + I&lt;/code&gt; (Windows/Linux) or &lt;code&gt;Cmd + Opt + I&lt;/code&gt; (Mac) to open the browser's Developer Tools .&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Navigate to Console Tab&lt;/strong&gt;: Click on the "Console" tab within the Developer Tools.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Paste the Code&lt;/strong&gt;: Copy the entire code snippet below and paste it into the console.
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;ContentWallHardsell&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nb"&gt;document&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;querySelector&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;#ContentWallHardsell&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;BodyElement&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nb"&gt;document&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;querySelector&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;body&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt; &lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;HardsellOverlay&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nb"&gt;document&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;querySelector&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;#HardsellOverlay&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;

&lt;span class="nx"&gt;ContentWallHardsell&lt;/span&gt;&lt;span class="p"&gt;?.&lt;/span&gt;&lt;span class="nf"&gt;remove&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;
&lt;span class="nx"&gt;HardsellOverlay&lt;/span&gt;&lt;span class="p"&gt;?.&lt;/span&gt;&lt;span class="nf"&gt;remove&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;

&lt;span class="k"&gt;if &lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;BodyElement&lt;/span&gt; &lt;span class="o"&gt;!==&lt;/span&gt; &lt;span class="kc"&gt;null&lt;/span&gt; &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; &lt;span class="nx"&gt;BodyElement&lt;/span&gt; &lt;span class="o"&gt;!==&lt;/span&gt; &lt;span class="kc"&gt;undefined&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="nx"&gt;BodyElement&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;style&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;overflow&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;scroll&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;

&lt;span class="nb"&gt;window&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;onscroll&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="kd"&gt;function&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="kc"&gt;false&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Hit Enter&lt;/strong&gt;: Press &lt;code&gt;Enter&lt;/code&gt; to execute the code, and BOOOOOOOOOOM!💥 Your Glassdoor page is now fully scrollable.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Show Some Love&lt;/strong&gt;: If you find this trick helpful, don't forget to hit the clap button and Star button on &lt;a href="https://gist.github.com/Shariar-Hasan/549efd6fd667b7496bdcebecc7d92aff" rel="noopener noreferrer"&gt;Glass Door Scroll Unlock Script in GitHub Gist&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;I hope you understand the procedure of the trick. You can get the code in &lt;a href="https://gist.github.com/Shariar-Hasan/549efd6fd667b7496bdcebecc7d92aff" rel="noopener noreferrer"&gt;here &lt;/a&gt;also. Don't forget to give a clap, and a star, if you get helped.&lt;br&gt;
Allah Hafez 👋&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>glassdoor</category>
      <category>tricks</category>
    </item>
  </channel>
</rss>
