Tagged Questions

Graceful-Degradation is the term used to describe the encapsulation of API specific calls such that your application can support the widest range of users. It's often used to provide the newest features to up-to-date devices while maintaining backward compatibility for older devices.

learn more… | top users | synonyms

21
votes
6answers
817 views

In 2011 is it truly necessary to still degrade js? [closed]

Serious question. I tried most of the famous websites (including facebook) and I can say that tons of functionality doesn't degrade at all with js disabled. I've been always told that js should ...
18
votes
6answers
4k views

Best way to detect that HTML5 <canvas> is not supported

The standard way to deal with situations where the browser does not support the HTML5 <canvas> tag is to embed some fallback content, usually a polite version (and sometimes a less polite ...
12
votes
3answers
4k views

How Does Rails 3's “data-method='delete'” Degrade Gracefully?

Rails 3 does some cool stuff to make Javascript unobtrusive, so they've done things like this: = link_to "Logout", user_session_path, :method => :delete ..converts to <a href="/logout" ...
12
votes
5answers
923 views

AJAXify site

I have legitimate reasons to do what I am trying to explain. I have an existing site say abc.com which has regular pages etc. everything written in php. Now I would like to AJAXify the site i.e. when ...
10
votes
6answers
1k views

How do I refer to Java 1.6 APIs while degrading gracefully against Java 1.5?

I would like to use the java.text.Normalizer class from Java 1.6 to do Unicode normalization, but my code has to be able to run on Java 1.5. I don't mind if the code running on 1.5 doesn't do ...
9
votes
5answers
4k views

How to write backwards compatible HTML5?

I'd like to start using HTML5's basic features, but at the same time, keep my code backwards compatible with older browsers (graceful degradation). For instance, I'd like to use the cool CSS3 ...
9
votes
14answers
780 views

Is graceful degradation in the absence of JavaScript still useful?

When even mobile browsers have JavaScript, is it really necessary to consider potential script-free users?
8
votes
2answers
5k views

Detecting pinch in Android

I would like to handle pinch events in my Android application to zoom in and out. I believe Android 2.0 has multi-touch functionality, and heard that Android 1.6 might or might not support it ...
7
votes
5answers
622 views

Python: Pickling a dict with some unpicklable items

I have an object gui_project which has an attribute .namespace, which is a namespace dict. (i.e. a dict from strings to objects.) (This is used in an IDE-like program to let the user define his own ...
7
votes
5answers
263 views

How important is it to support old browsers?

Just read an interesting article by yahoo's Nicholas C. Zakas: What’s a web browser? How do you best balance implementing new technologies like HTML5 and CSS3 while keeping support for browsers like ...
7
votes
5answers
229 views

What is the difference between Progressive Enhancement and Graceful Degradation?

I'm confused on what the difference is between Progressive Enhancement and Graceful Degradation. To me they seem like the same thing. Can you please explain to me the differences between the two and ...
6
votes
5answers
227 views

Is it sometimes ok NOT to Degrade Gracefully?

I am in the process of building a video sharing CMS that uses lots of jQuery and ajax for everything from rich UI effects to submitting and retrieving data to and from the database. When JavaScript is ...
6
votes
6answers
262 views

Is progressive enhancement a current issue anymore?

There are couple of things I hear in defense of progressive enhancement. Javascript is off or not available. According to W3School's Javascript statistics, 95% had Javascript enabled January 2008 ...
6
votes
3answers
613 views

Gracefully-degrading pickling in Python

(You may read this question for some background) I would like to have a gracefully-degrading way to pickle objects in Python. When pickling an object, let's call it the main object, sometimes the ...
5
votes
1answer
374 views

Javascript degradation solutions for CSS3 animations

I've been creating a number of small thick client JavaScript apps for an iPad app, which loads the relevant app in a UIWebview. I am now making them cross browser and need to incorporate some ...
5
votes
7answers
557 views

Silverlight that degrades to html

I am interested in creating a website entirely in silverlight (personal reasons) but I don't want people who don't yet have silverlight (a good many) to have to install a plugin just to view my site. ...
4
votes
3answers
76 views

Check to see if system is able to display JS effects smoothly

I am wondering if there's an easy way to implement a quick benchmark on a browser for rendering speed? It is nice to have spiffy animation effects, but only if the machine can handle it. With SVG ...
4
votes
1answer
394 views

Gracefully Degrading ContentEditable on iPhone & iPad

To my dismay, I found out that the contentEditable=true attribute does not work as expected on iPhones or iPads. Is there a way to gracefully degrade a contentEditable div without resorting to a ...
4
votes
4answers
302 views

How do I make my UI 'degrade gracefully' with Javascript disabled?

I've read in multiple posts on SO that if users have Javascript disabled, ideally your page should 'degrade gracefully'. I'm not sure in general what types of things should be done to make this ...
4
votes
3answers
1k views

GWT without Java Script?

I was looking into GWT. It seems nice, but our software have the must work without JS requirement. Is it possible?
4
votes
5answers
293 views

How important do you think Progressive Enhancement is? [closed]

Progressive Enhancement is a web development methodology that not only allows greater portability and accessibility but in my opinion, makes the development process easier. What I want is to know ...
3
votes
2answers
159 views

BrowserID without Javascript (preferably in Python) - is it possible?

BrowserID currently uses a Javascript shim, while browsers are still (hopefully) developing support for it. Is it possible to use BrowserID for clients that don't run javascript? I could read the 600 ...
3
votes
2answers
100 views

Javascript graceful degradation

HEllo, Does this look ok: <a href="directlinktopurchasepage" target="_blank" onclick="return loadBuyPopup()">Buy Now</a> function loadBuyPopup() { //do something return false; } ...
3
votes
1answer
131 views

HTTP POST and graceful degradation

I have a web application which among other things contains a table of items created using an Ajax callback. A bunch of form fields at the top of the table allow me to filter the items that will be ...
3
votes
2answers
215 views

How can I check if a particular jQuery UI function is available and use a different function if it isn't?

I'm writing a jQuery plugin and I would like my code to take advantage of the jQuery UI show(effect, [options], [speed], [callback]) and hide(effect, [options], [speed], [callback]) functions, which ...
3
votes
4answers
521 views

Memcached - how to deal with adding/deploying servers

How do you handle replacing/adding/removing memcached nodes in your production applications? I will have a number of applications that are cloned and customized due to each customers need running on ...
3
votes
3answers
155 views

Graceful degradation outside the domain of web applications: how significant a problem is it?

Apologies for the long intro - just trying to suitably set the scene to avoid ambiguities and confusion. Web applications have grown from being dumb browser-based interfaces for server-side logic to ...
3
votes
1answer
2k views

Using respond_to for graceful degradation with ajax in RoR 2.x

I was going through the AWDR book on web development with ruby on rails and one of the issues with the old code was it didn't use respond_to to make sure the view used would be the javascript view. ...
2
votes
0answers
36 views

Has the time gone to think about user with JavaScript disabled in browser? [migrated]

In this Modern time of HTML5 API jQuery Modernizr HTML5 Shim Respond.JS Google Chrome app store Canvas Has the time gone to think about user with JavaScript disabled in browser? Ot it's still need ...
2
votes
4answers
70 views

How to degrade a program gracefully when there are waiting threads?

I know the construct of terminating a thread gracefully: public class Foo implements Runnable { private volatile boolean stop = false; public void stop() { stop = true; } public ...
2
votes
4answers
83 views

Show an element… unless the user has javascript turned on, then fade it in nice and pretty?

I have an element which shows important text to the user, as such I'd like to animate it in to the pane (motion draws the eye) rather than just have it somewhere where the user may miss it. How can I ...
2
votes
2answers
412 views

How should I write a Jquery Mobile app for browsers with and without javascript support?

I'm trying to wrap my head around jQuery Mobile. My aim is to build a very fast application with a look and feel as close as possible to a native app (at least for modern devices). I understand ...
2
votes
1answer
94 views

Handling graceful degradation within a Django form

I have a form that looks similar to the following (simplified for brevity): PRICING_PATTERN = r'(?:^\$?(?P<flat_price>\d+|\d?\.\d\d)$)|(?:^(?P<percent_off>\d+)\s*\%\s*off$)' class ...
2
votes
1answer
105 views

Progressive enhancement / Graceful degradation and web applications

I am building a web application that uses a lot of Javascript. Now I am wondering does it make sense to make the application work without Javascript? I can understand for normal websites that you want ...
2
votes
3answers
406 views

How to build Graceful Degradation AJAX web page?

I want to build web page with "Graceful Degradation". That is, the web page functions even javascript is disabled. Now I have to make design decision on the format of AJAX response. If javascript is ...
2
votes
3answers
341 views

Javascript Ajax Graceful-degradation, with Different Pages?

I'm starting to give a little more attention to making my javascript and ajax degrade gracefully. Which is more recommended: working on incorporating the graceful degradation into your existing code ...
1
vote
4answers
123 views

Should we still support iOS 4?

Now that iOS 5 is out and compatible with iPhone 3GS & up, should we still support iOS 4?
1
vote
1answer
73 views

Does the html5 required attribute degrade gracefully in browsers that don't support it?

I'd love to use the required attribute on forms, but I don't know how older browsers will deal with this attribute that is (to them) unknown. Will older browsers nicely ignore (and thus allow to ...
1
vote
1answer
61 views

Is this trick safe to do in all browsers?

Is this safe to do in all browsers? It's a way to simply redirect users to a different place when js is off. <noscript> <meta http-equiv="refresh" content="0;url=http://site.com/nojs"> ...
1
vote
3answers
130 views

javascript: Does progressive enhancement means no json with ajax?

I read this article here that talks about progressive enhancement for javascript and the author mentioned: First, build an old-fashioned website that uses hyperlinks and forms to pass ...
1
vote
1answer
584 views

What is a better way to lazy load content for users with javascript?

I have a page that has lots of images and other code that would work better if it is lazy loaded. I have been attempting to do this with the noscript tag but I just noticed that it is not working ...
1
vote
3answers
207 views

jQuery HTML Anchor Tag Progressive Enhancement

I have jQuery that I have written that is supposed to find a particular <a> tag and change its behavior. Before jQuery loads, the <a> tag has an href attribute that points to another ...
1
vote
5answers
298 views

How to hide certain html that is not surrounded by <noscript> tags if javascript is disabled?

<html> <head> <script type="text/javascript"> // jquery and javascript functions </script> </head> <body> ...
1
vote
2answers
158 views

Overriding pseudo styles in jQuery

How can I overwrite the CSS below with jQuery? (The animations aren't being run and it's just an instantaneous switch.) menu span ul {display: none;} menu span:hover ul {display: block;} $('#menu ...
1
vote
3answers
129 views

Support clicking a link, but sending a POST (vs GET) to the server, without Ajax?

I'm thinking this isn't exactly possible, but maybe I'm wrong. I'm simply torn between those who believe that only POST requests should modify data on the server and people that relax the rule and ...
1
vote
1answer
150 views

Dropdowns with 10 thousand possible values and sequence-important dropdowns vs. graceful degredation

Background I have this form that uses javascript exclusively to search through ~5k entries (suppliers) and populate a select dropdown from them (factories, ~10k entries). Right now, it's a ...
1
vote
4answers
109 views

Depend on Javascript/AJAX?

In quite a few answers to questions related to sending requests to servers, I see the use of Javascript/AJAX being advocated. I'm still kind of a purist, in the sense that I try to develop sites that ...
1
vote
1answer
61 views

Javascript degradable cascading dropdownlists

I have 2-3 list within a form that rely on each other. If one is changed an ajax call is made and the others are loaded. I was wondering if any of you knew of a method to make this dropdownlist js ...
1
vote
2answers
181 views

graceful degradation for globbing on terminal

Whenever glob pattern match fails, it stops the whole job. For instance, $ mv *.jpg *.png folder1 && blahblah mv: cannot stat `*.jpg': No such file or directory *.png isn't moved to folder1 ...
1
vote
5answers
274 views

How to generate different links on web page if JavaScript is enabled?

I am trying to follow tecnhique of unobtrusive JavaScript / graceful degradation. I'd like to serve page with different links when JavaScript is turned on, and when JavaScript is turned off. For ...

1 2