Click here to Skip to main content
15,881,882 members
Articles / Programming Languages / Javascript

JavaScript and progressive enhancement

Rate me:
Please Sign up or sign in to vote.
2.33/5 (3 votes)
10 Apr 2007CPOL2 min read 20.6K   7   2
This article explains what progressive enhancement is using JavaScript.

Using CSS to style HTML pages allows us to separate structure (the content) from presentation. Separating structure from presentation reduces page loading times, improves search engine ranking, and increases a websites' reach. It also ensures a website is more easily maintained and will ultimately save you time and money.

More recently emerged JavaScript techniques such as 'progressive enhancement', 'Unobtrusive JavaScript', and 'graceful degradation' have added a third layer, the behavioural layer.

The behavioural layer

The behavioral layer is created by placing all JavaScript in an external file. The JavaScript is then applied using the DOM. Methods such as getElementsByTagName() allow us attach the JavaScript based on rules set in the external JavaScript file rather than entering JavaScript inline.

Advantages of creating a behavioral layer are as follows:

  • The JavaScript is more maintainable
  • Debugging is simpler

What is JavaScript?

JavaScript has been with us since December 1995 when it was first deployed by the Netscape browser version 2.0b3 (for those who like detail!). It's both a client-side and server-side scripting language.

JavaScript is more commonly, and for the purposes of this article, a client-side scripting language. It can be used to validate forms, open new browser windows, and swap images amongst other things.

Old web technologies

Unfortunately, web designers have had a tendency to misuse JavaScript. The additional functionality JavaScript affords developers has often led to websites becoming unusable. JavaScript functionality that could hinder the user experience includes:

  • Pop-up windows
  • Disabling the right mouse button
  • Disabling the back button
  • Scrolling special effects

This was also compounded by the fact that cross-browser support was unreliable at best.

JavaScript is now an established scripting language and browser support is relatively consistent. The hot topic at the moment is called progressive enhancement. This is the technique of using JavaScript to enhance the user experience.

What is progressive enhancement?

Progressively enhancing your site using JavaScript means you should:

  • Ensure a site is functional even if users don't have JavaScript available
  • Only use JavaScript to add new layers of enhanced functionality

Let's use a real world example to illustrate how JavaScript can be used to progressively enhance a site.

Using JavaScript to validate a feedback form

Initially, as with all forms, validation rules must be applied server-side. If you rely on client-side validation and the client-side script is unavailable, you may:

  • Receive poorly formatted data
  • Receive unusable data
  • Be exposed to security breaches

The second step is where we use JavaScript to progressively enhance the form. The form will therefore be validated with client-side JavaScript. Validating the form client side intercepts the form submission client-side and stops users from having to wait for the page to reload if it's been filled out incorrectly.

Extra effort in creating a JavaScript behavioral layer means the form can be made more usable. Intercepting the form before it is submitted means the user's experience is improved but without JavaScript available, the form is still fully functional.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
United Kingdom United Kingdom

This article was written by Paul McCarthy. Paul's crazy about CSS and using JavaScript for good (not evil) - so crazy that he works for Webcredible helping to make the Internet a better place for everyone. He loves spending his time working on the world's most accessible CMS and knows an awful lot about accessible web design.


Comments and Discussions

 
QuestionPoor rating over a good concept Pin
volkan.ozcelik10-Apr-07 21:40
volkan.ozcelik10-Apr-07 21:40 
AnswerRe: Poor rating over a good concept Pin
jonx25-Apr-07 15:05
jonx25-Apr-07 15:05 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.