What is a progressive enhancement/unobtrusive JavaScript approach?
First, a good JavaScript approach is about implementing JavaScript in an unobtrusive way. Basically, what this means is avoiding some basic bad implementations: • No more inline event handlers in HTML elements, meaning that code like this should never be used:
) • Definitely never ever use javascript: links, like this: A destroyed link • No inline JavaScript blocks in your web pages at all.