vote up 1 vote down star
1

Hi,

Im writing a fairly small web application in PHP and intend on using DOJO to make it "fancy" and most likely handle some validation on the client side (there will be server side validation too).

I would like make JavaScript a requirement for my site, and therefore, if a user's browser has JavaScript disabled, or is not capable of JavaScript, they shouldn't be able to use the site at all, and get a message to notify them of this requirement.

I have seen other sites do this, but I can't work out how to enforce it.
For an example, attempt to log in here with username=user and password=user
http://demo.actitime.com/login.do?username=user

I would then want this same thing to happen on everypage.

Any help appreciated.

occhiso

flag

This question would be more aptly titled “how do I create a total usability desaster?” – Bombe Jan 26 at 9:32
If your site is providing any kind of paid service, it may well be illegal to do this, depending on local law. – Pete Kirkham Jan 26 at 9:37
How would it be illegal to require Javascript, particularly if its part of your terms of service? – cletus Jan 26 at 10:05
@cletus It has nothing to do with ToS (which are of dubious legality anyway), it has everything to do with people who are disabled needing special software to assist their use of the web. Being deliberately uncooperative is discriminatory. – Rex M Feb 4 at 1:58

8 Answers

vote up 0 vote down

The best reason I can think of is to stop people accessing and using forms without java scripted based browsers so hiding from the Counters.

For example if someone decides to spam, even with capcha and hides their isp by not enabling javascript, (alot of counters rely on it), then I think it would be a good idea to ban all non javascript browsers on a website.

In fact I think I will.

Good idea 'occhiso'.

link|flag
I can hide my ISP by disabling javascript? Are you really sure about that? – dxbmatt Jul 18 at 20:48
vote up 1 vote down

Some advanced users disable JavaScript by default, and enable it on a per-website basis. I would just warn them that JavaScript is required to go further. Use to dispaly the text to browsers without JS, or with JS disabled:

<noscript>
    <p style="color: Red;">Warning: JavaScript is required to display anything after you login. Please enable JavaScript or use a different browser</p>
</noscript>
link|flag
haha advanced... you mean paranoid. – corymathews Feb 4 at 2:17
vote up 1 vote down

Just put a script in your page that enables a session variable in the browsers that visit your site by redirect or submiting data using Ajax to the page that enables that variable. In the next click y the session does not have the session variable, you redirect it to another page, which one request a JavaScript enabled browser.

link|flag
vote up 4 vote down

You know, the year is 2009, not 1997. These hacks belong to the past, dead and buried like the filth they were.

As for a useful answer: read up on graceful degradation.

As for your answer: CSS can accomplish what you're doing with DOJO with no Javascript at all (at least, the things you mention). It would require roundtrips to the server if javascript isn't enabled, that's all. I don't know what you mean by 'logic', but the canonical sense of the term is better done with PHP and possibly a templating system than by using javascript.

Input validation without a roundtrip is nice, but if I have no javascript or can't use it, server validation is better than no-frickin-site at all.

Yes, it is really that bad.

EDIT: Colonel Sponsz points out another useful link about graceful degradation.

link|flag
Being the age of WEB 2.0 (not 1997), surely javascript is needed more and more with so many things using AJAX. I think your quite rude. – occhiso Jan 26 at 10:35
Au contraire, accessibility is more widely understood now - and you don't need Javascript to get things done. @Adriano - there needs to be server-side validation of all input anyway (client-side can be trivially bypassed) so it's not like this would even be more work. – Andrzej Doyle Jan 26 at 10:41
@dtsazza: oh, sure, and occhiso said it would be implemented too. I was just viewing it from the POV of the user. Which includes hackers that bypass js-only validation, I know. – Adriano Varoli Piazza Jan 26 at 11:14
@occhiso: I want to be clear. The examples you mentioned are bad examples. I'm not calling you a hack. I'm saying that this kind of programming belongs six feet under. If you didn't know, it's ok. Nobody's born knowing. – Adriano Varoli Piazza Jan 26 at 11:16
Input validation isn't really a good example because with or without client-side input validation you should never trust it and it should always be validated on the server regardless. – cletus Jan 26 at 12:04
show 1 more comment
vote up 0 vote down

One reason is that I wanted a tabbed interface - which allows the same task to be done different ways. Alot of the same logic is used "per tab", so I didnt want to break it off to a separate page.

Using dojo, I can achieve this pretty easily by having all the content is separate div's on the same page, then dojo puts each div in it own tab. Without JavaScript, you would see all tabs (the divs) at once.

There are a few little hiccups like this, and I thought making it a requirement, it would always behave and look good, and those without JavaScript would miss out, baring in mind that this is by no means a mission critical site!

Also, this means I can enforce input validation without the user having to reload the page.

Is it really that bad?

link|flag
No it's not that bad. It's understandable in fact. – cletus Jan 26 at 10:04
Yes, it's definitely that bad. You're telling people "If you want to use my site, I want you to open yourself to security holes that could mean your bank account gets emptied. And if you're visually impaired, I don't want you here either!" – Michael Borgwardt Jan 26 at 10:10
The people without javascript might decide that they like a broken site better then no site at all. I would say, if there is no javascript a "won't work without javascript, proceed at own risk"-warning would be the best solution, but with the possibility to try it anyway. – sth Jan 26 at 10:11
instead of loading all divs at once, i would use ajax, and i would support direct linking to each tab. this way, people can open up those links on separate tabs on their browser, and also be able to see them without javascript. yes, it's bad. – Murat Ayfer Jan 26 at 10:15
If you don't take enough time to make your site at least semi useful with javascript then I won't take the time to add it to my noscript allow list. – Jared Jan 26 at 10:19
show 2 more comments
vote up 4 vote down

The only appropriate response to this is: "Why would you want to?"

Really, a better approach would be to try making it work first, then adding the fancy javascript bits afterwards. This way users that have javascript disabled can still use it, even if it has limited functionality.

link|flag
vote up 21 vote down

I don't think this is a sensible approach.

Just put a little more effort in the site so users without javascript can access the site too. Don't forget that they are your customers. And they probably have a good reason to disable javascript.

link|flag
Nevertheless this is becoming increasingly common. Disable Javascript, go to www.cnn.com and then click on some articles. – cletus Jan 26 at 9:50
1  
Well, even if everybody else does the wrong thing, that is no reason to do wrong it yourself. – Gamecat Jan 26 at 9:52
Who says its wrong? Javascript is becoming a baseline requirement, like it or not. As such Web developers will increasingly require it rather than spending time and effort worrying about what happens for the increasingly few who don't have it or disable it. – cletus Jan 26 at 10:03
With the rapid increase in security problems based on XSS and XSRF it's also quite possible that JavaScript is becoming inacceptable, like it or not. As such users will increasingly disable it rather than risk having their bank account emptied like it happend to their cousin. – Michael Borgwardt Jan 26 at 10:07
1  
Yes it does. Not supporting noscripts is a failure of design, and by extension you as a developer. The OP should revisit his assumptions, and this answer directs him to that. – annakata Feb 24 at 11:33
show 3 more comments
vote up 3 vote down

Two things spring to mind:

  • Use the <noscript> tags for content; and
  • In the case of that website and for similar functionality, instead of having a submit button, have a normal button with an onclick handler:

    <input type="button" onclick="documents.forms[0].submit();" value="Submit">

Can't submit without Javascript enabled.

link|flag
hitting enter would still submit, wouldn't it? – Murat Ayfer Jan 26 at 10:11
I actually did do this, but its pretty easy to insert a submit button using firebug. Appreciate your thoughts though, I think your the only one here who thinks this is ok - thanks. – occhiso Jan 26 at 10:17
If you ask a group of 'experts' and everyone says 'this thing you want is bad because of this and that' except for one person, I don't think it's very reasonable to assume everyone is wrong but you and this other guy. – Adriano Varoli Piazza Jan 26 at 11:40
Of course, everything can be done with enough time and money. It doesn't mean it's a sensible or good thing to do. That's why thedailywtf was born. – Adriano Varoli Piazza Jan 26 at 11:41
weblogs.asp.net/alex_papadimoulis/archive/… explains better than I can what I'm thinking of. Should be required reading. – Adriano Varoli Piazza Jan 26 at 11:44
show 2 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.