Quantcast
Channel: What do you do if your site visitors have JavaScript disabled? - Stack Overflow
Browsing latest articles
Browse All 10 View Live

Answer by mthurlin for What do you do if your site visitors have JavaScript...

For every site I build, I compare the cost of development for degrading gracefully, versus the loss of income by scaring off ~2-3% of the audience.Not caring about non-javascripters/Opera/etc usually...

View Article



Answer by raveren for What do you do if your site visitors have JavaScript...

To couple with <noscript> I have all elements that require JS to function with class="js-required". Then CSS: .js-required{display:none;}JS on page load: $('.js-required').css('display','block')

View Article

Answer by easement for What do you do if your site visitors have JavaScript...

Ideally, you would use progressive enhancement which entails guaranteeing a base user experience and then adding all the flourishes for browsers that can handle them.

View Article

Answer by infinitloop for What do you do if your site visitors have...

you can check this out:How to detect if JavaScript is disabled?

View Article

Answer by Trevor for What do you do if your site visitors have JavaScript...

If your visitors didn't know they have JavaScript disabled, a simple message would let them know they should enable it.<noscript>Please enable JavaScript in your browser</noscript>

View Article


Answer by Decent Dabbler for What do you do if your site visitors have...

Indeed degrade gracefully. If that's not an option (anymore ;-)) then at least notify them with utilizing a <noscript> tag.

View Article

Answer by Anthony Forloney for What do you do if your site visitors have...

Your website should be somewhat prepared if JavaScript is disabled, either display a message that your website works better with JavaScript enabled or work-around it.

View Article

Answer by Dead account for What do you do if your site visitors have...

Use the NoScript tag to say "Hey, Enable Javascript fool!"<script type="text/javascript"> alert("Hello World!");</script><noscript> Hey, Enable Javascript...

View Article


Answer by SilentGhost for What do you do if your site visitors have...

you would degradegracefully.

View Article


What do you do if your site visitors have JavaScript disabled?

What would you do if your site visitors disabled JavaScript? Do you block them?

View Article
Browsing latest articles
Browse All 10 View Live




Latest Images