Log in

View Full Version : Hide certain things from users that have javascript disabled


Lea Verou
11-13-2007, 10:00 PM
Hide certain things from users that have javascript disabled
I needed this for a project I'm working on, and thought I'd share it, as I liked my idea a lot. :D

Instructions
Open your headinclude template and add this code at the very bottom:

<!-- is js enabled? -->
<noscript>
<style type="text/css">
.ifjs { display:none; }
</style>
</noscript>
<!-- / is js enabled? -->
Then you can add the class ifjs to any element you want to be hidden from visitors that have disabled javascript. For example:
<div class="ifjs">visitors with disabled js won't see this</div>

<div class="alt1 ifjs">visitors with disabled js won't see this</div>You can even use it in non-vbulletin pages (as long as you put that code in the head) as it doesn't use any vB-specific code. ;)
Feel free to go crazy with javascript now and not worry about those morons who disable it! :D

yoyoyoyo
11-14-2007, 11:38 AM
great idea - I will have to try it out later. very simple javascript, but seems like it would be effective. It seems like this could easily be converted to BB code, also.

Lea Verou
11-14-2007, 11:47 AM
great idea - I will have to try it out later. very simple javascript, but seems like it would be effective. It seems like this could easily be converted to BB code, also.
In fact it doesn't use any javascript, it just uses the <noscript> tags to define a css class that will hide anything that has it. However the browser only "sees" that class if the javascript is disabled, since the <style> tags are inside <noscript> tags. ;)

Why would someone want to convert this to a bbcode? I can't think of any use of such a bbcode...

Analogpoint
11-15-2007, 02:38 PM
Nice job Michelle!

ragtek
11-15-2007, 02:43 PM
jea cool
much nicer then my idee:D http://www.developer-network.org/showthread.php?t=40

yoyoyoyo
11-15-2007, 04:02 PM
Why would someone want to convert this to a bbcode? I can't think of any use of such a bbcode...here is one example:
https://vborg.vbsupport.ru/showthread.php?t=141584

Analogpoint
11-15-2007, 04:42 PM
Why would someone want to convert this to a bbcode? I can't think of any use of such a bbcode...

You could combine it with any BBCode that uses Javascript, such as a spoiler tag.

dartho
08-29-2008, 12:32 AM
Thanks you - incredibly useful!

Tim Skellett
06-10-2009, 01:17 AM
Really neat, very helpful! Many thanks!