Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 601
streetparade Avatar asked Jan 26 '10 16:01

streetparade


3 Answers

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.

like image 140
easement Avatar answered Oct 03 '22 16:10

easement


you would degrade gracefully.

like image 30
SilentGhost Avatar answered Oct 03 '22 14:10

SilentGhost


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

like image 28
Decent Dabbler Avatar answered Oct 03 '22 15:10

Decent Dabbler