vote up 3 vote down star

Possible Duplicate:
Should your website work without JavaScript

Going back a few years ... javascript had flaky cross browser support, some people turned javascript off due to various security concerns, javascript UI was the future (not the present) and and we as web developers & desginers had to build websites that allowed access to all our website content without requiring javascript.

Now that we are in said future, with API's such as jQuery, Ext, Proto etc, with the ability to access servces via Ajax in 1 line of code, with browsers and internet speeds that allow users to view javascript rich pages without having wait for the javascript files to download and kick in, is it still important to provide full access to content to non-javascript enabled browsers/users? How would you deliver this? As a separate site (i.e. text based?), or by hooking in javascript if it is enabled?

flag

3  
Duplicate stackoverflow.com/questions/1084065/… – cletus Aug 30 at 0:45

closed as exact duplicate by cletus, Sinan Ünür, Alex, Jonathan Sampson, Crescent Fresh Aug 30 at 5:26

9 Answers

vote up 2 vote down check

Absolutely yes they should.

It's quite trivial to implement it. If you have some function like:

<a href="#" onclick="funkyChicken();">click</a>

You implement it more like so:

<a href="alt-funkychickenimplenetation.aspx" onclick="return funkyChicken();">click</a>

And inside funkyChicken:

function funkyChicken ()
{
    return false;
}

This way, if JavaScript is enabled, the click won't progress, and the user will stay on the page to watch the 'funky chicken'. If it is disabled, they'll navigate to 'alt-funkychickenimplementation.aspx' where they will get a similar result, requiring no JavaScript.

-- Edit

A classic trivial use of this model is paging. You may attempt to page Ajax-style (with an onclick as above), but assuming they don't have JavaScript enabled, it will fall back and just navigate to page 2.

You'll need to do slightly more complicated things, depending on how you write your site, but in general, it's actually pretty easy, and will make your application quite beautiful for everyone, JavaScript or not, and even on lower browsers and phones :)

link|flag
How would you handle the scenario where my page retrives a set of data via an Ajax call to a web service to populate a extJS grid? – Jaimal Chohan Aug 30 at 0:54
It's cleaner to just give the link an id and attach the click handler from some shared code onload. Same reason CSS shouldn't be written inline: separation of concerns. Also makes it very easy to add similar handling to a lot of links. – Eevee Aug 30 at 0:55
You would either refresh the page, so that the results are now display (href='?newdata=x') or navigate to a page showing only that data, depending on the context. – silky Aug 30 at 0:56
Eevee: We'll disagree on that. Regardless, it's not important to this question. – silky Aug 30 at 0:57
vote up 1 vote down

The counterpoint to Graceful degradation would be Progressive enhancement.

I'm a fan of this approach because you consider development from a basic accessibility standpoint and work up from there, rather than build all your functionality and try to make it work for less capable browsers.

That said, there's never a magic bullet when it comes to things like this - it really depends on what you're building and how it's meant to work - in the progressive enhancement approach JavaScript is there as the "candy coating" to add extra pizazz to a site, or make things easier/more convenient based upon the browsers capabilities.

If one were to fully embrace the...spirit, I suppose, of the web then you'd want to cater to all users, regardless of capability - this is an idealistic approach and not always feasible or reasonable to do, I mean how much trouble would you go through to enhance Flickr or YouTube for a text-based browser like Lynx?

link|flag
vote up 1 vote down

I do believe "graceful degradation" remains an important concept, although the decision of how much to invest and how gracefully to degrade is a business one, not really a technical one. IOW, it's up to the "business side" stakeholders to decide how the inevitably scarce development resources must be prioritized among various features that (hopefully;-) deliver business value: some of those features are ones oriented to supporting peculiar browsers (including ones with broken Javascript or other ever weirder issues;-), while some are connected to optimizing user experience for users with widespread modern browsers.

For a clean architecture, the back-end should not involve itself in presentation issues (including presence or absence of Javascript;-) but essentially deliver a clean interface to storage and business-logic functionality (whether full REST, a REST-like variant with less emphasis on hypertext discovery of URIs, or something even more RPC-y -- that's another debate, as is the one about whether generic payloads should be XML, JSON, or what else, etc; I'll gladly debate those other issues, but ideally not on THIS question/thread;-).

Presenting info to the user, receiving user input, and interacting with the backend to retrieve and deliver information, are the front-end's task. A "thin-server architecture" like the one I'm proposing (see here, net of the various "side issues" above mentioned;-) is ideally suitable to multiple front-end implementations, as may be needed e.g. for optimal user experience on drastically different devices... which does include "smart devices with modern JS support" all the way to "basically braindead ones", just as it includes (e.g.) tiny screens all the way to 30" ones, no audio all the way to surround sound quality, etc, etc;-).

So clearly one implementation of the front-end could be entirely in Javascript on the browser (probably using Dojo, jQuery, or the like, too); at the other extreme, another implementation might be entirely server-side and deliver and receive HTML 1.0 (no CSS allowed) on HTTP 0.9, thoroughly tested for compatibility with NCSA Mosaic (the pre-beta developers-only version of course, you can't take it for granted that everybody has updated yet, right?-). What audience you MUST support, with what priority, is a business side decision that will dictate the priority and allocation of resources between these front-end efforts and others yet.

Aside: developing > 1 front-end at once, while it may delay "hitting market", would help ensure that the back-end IS quite as general and powerful as it should be; this is a similar consideration to the one Brooks offers as to why the IBM/360 Architecture -- despite being the very first time "architecture" was considered as a separate issue from implementation -- came out so well: since > 1 implementation (in HW and microcode in various mixes) were proceeding at the same time, the architecture team, captained by Gene Amdahl, had a chance to resist the pulls and pushes from the various implementation teams to bend the architecture that way or this way to make one implementation's job easier!-)

Whenever you have > 1 front-end, the base URL that the user hit is responsible for sniffing the user agent characteristics and redirecting appropriately ASAP to the best available front-end for that combination of characteristics. These front-end-specific URLs should also be nice and clean so users can bookmark them &c directly and sensibly, BTW.

Similarly to the prioritization issue, deciding how much degradation of user experience is acceptable in the "allegedly-gracefully" degraded front-ends is ALSO a business decision. How important to the business are users with old or deliberately-degraded browsers? It's not an engineering problem, it's a business one. The engineers' job is to carefully research the possibilities and inform the business users of their costs (esp. in term of development time and technical risk) and technical benefits, not to weigh those against the business value. BTW, by "business value" I do NOT mean just money!!! A non-profit or government site must similarly decide who they're serving, with what priority, etc. It may be uncomfortable to make these decisions explicitly - easier to hide behind the veil of alleged "technical necessity"!-) - but I'm adamant that in the long run explicit and transparent decision making is best for all involved!-)

link|flag
vote up 0 vote down

I browse with NoScript (and occasionally even use elinks), so I run into this all the time. Especially on sites that don't even bother to provide a <noscript> informing me that they use JS; instead, I get a white page or broken layout.

In my experience, most of the sites that "require" Javascript are just being lazy. There's no reason you should NEED my browser to support JS solely to do some cute animation or load CSS or display static content. Most of the problems could be solved by putting something useful in the original page source and then changing it with JS when necessary, rather than filling in empty space with JS. We managed static sites just fine ten years ago without any Javascript at all; I don't see why we need it now.

Granted, if you have some cool doodad that simply cannot work without client-side scripting, then by all means use Javascript all you want. But keep in mind that not everyone has it for one reason or another, and even Google Maps works without it.

link|flag
vote up 0 vote down

I periodically (but, I confess, not consistently enough) try to use my web apps after disabling js, css, images; I even try to use it via links (text mode), to be sure that everybody will be able to use it somehow.

Of course some resources are pointless to access to without js, but I think that a user should be able to do the fundamental things (for instance: ask a question, answer to one, mark a question as answered) using links or even telnet.

link|flag
vote up 2 vote down

Yes! JavaScript is still a serious accessibility consideration and requiring it can be harmful to much of your audience.

The same frameworks you mention (jQuery and Prototype, at least) not only make AJAX requests easy, but also make it easy for you to supplement already-in-place HTML forms with dynamic JavaScript features. In fact, I often find it easier to build the static version of a site and then add JavaScript than to write the JavaScript version from scratch.

So, it doesn't take you much additional time to implement, and for visitors who do use JavaScript and AJAX the experience is as rich as you could hope it to be. For everyone else, it's still entirely functional, albeit less impressively so.

At the same time, a pure web application shouldn't be expected to function without JavaScript. For example, I can't imagine what reasonable behavior one could expect from Google Documents in the absence of JavaScript. Requiring it there seems completely logical.

link|flag
vote up 8 vote down

Yes, they should. It's called Graceful Degradation. It allows non javascript browsers access the website under the same conditions that a normal browser would access it.

link|flag
came here to say this. – Rob Allen Aug 30 at 0:44
This also works well if you want to write your code for javascript version 1.7 and want to gracefully degrade for lesser <g> browsers. – James Black Aug 30 at 2:37
vote up 0 vote down

Similar question: http://stackoverflow.com/questions/1284899/designing-a-website-for-both-javascript-script-support-and-not-support

And what I think about it plus some security tips: http://stackoverflow.com/questions/1284899/designing-a-website-for-both-javascript-script-support-and-not-support/1284944#1284944

My answer, again, is: no, they shouldn't. Every, every, every browser today support JavaScript, there's no sense in wasting your time making your site work without it.

Only "hackers" attempting to find security holes in your site will disable it, filter forms and cookies for dangerous stuff in server-side to prevent security issues, but don't waste your time to make the site work and look nicely for them.

link|flag
Actually, I'd argue that there are a number of people who disable JavaScript for security reasons to help protect themselves against XSS attacks and the like - just because they don't have JS enabled doesn't make them a Hacker or less worthy of having a good experience at your site - just an opinion. – Crazy Joe Malloy Aug 30 at 1:17
I suppose you havent heard of NoScript. – Vineet Reynolds Aug 30 at 1:18
I'm referring to the NoScript plugin for Firefox, in case you had it confused with the noscript tag in HTML. People use NoScript to prevent JS from executing, except for certain trusted sites. – Vineet Reynolds Aug 30 at 1:23
Its meaningless. NoScript is for debugging, security prevention, and intrusion. You're not supposed to fully navigate sites with it turned on. Disableing JavaScript means disableing all dynamic content like AJAX, jQuery and so. I won't kill neurons putting my amazingly beutiful sites to work for this minory of retards who installed it and can't disable it. Can you use Stackoverflow with NoScript turned on? I don't think so. – Havenard Aug 30 at 2:12
vote up 3 vote down

It depends on your audience, I think. If you work for a company or government agency then you should definitely worry about accessibility. Screenreaders can have problems with javascript, although they don't preclude its use. The best option, I think, is to try out a screenreader (JAWS has a trial that works for 45 mins at a time) and see how well people can get around your site.

On the other hand, if it's your personal portfolio site or something along those lines, then you can probably let fly with the javascript.

You might want to also consider mobile users these days. The football site for the university that I graduated from uses javascript drop downs for their main navigation and it's a huge pain to use. All they would have to do to make the pain go away is provide a simple backup like a sitemap.

link|flag

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