Discovery Gaming Community

Full Version: Is there a way to toggle off Sidebar permanently?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there a way to toggle off Sidebar permanently?
Is there?
I guess technically you can do something like:
Code:
$( '#side, #debug' ).hide(); $( '#forum' ).css( 'width', '100%' );
in some tool like Greasemonkey
Any easier way, like implementing a cookie telling website that I toggle it off every time I visit?
Yeah, cookies is definitely one way to go about it.
JavaScript interfaces with cookies with very few lines of code.

Adding that logic into the JavaScript which hides and shows the toolbar sounds simple enough.

Reference: The almighty W3Schools
So far this constantly appearing sidebar after I turn on my browser is getting on my nerves. Offering my deepest gratitude for whoever fixes this flawed design.
document.cookie = "dgcsidebar=false;"