Note: You are currently viewing documentation for Moodle 3.7. Up-to-date documentation for the latest stable version of Moodle may be available here: Unobtrusive Javascript.

Development:Unobtrusive Javascript: Difference between revisions

From MoodleDocs
m (Unobtrusive javascript moved to Development:Unobtrusive Javascript)
m (cat edit)
Line 15: Line 15:
* [[Hijax]]
* [[Hijax]]
* [[Progressive enhancement]]
* [[Progressive enhancement]]
* [http://www.onlinetools.org/articles/unobtrusivejavascript/ online self-training course for Unobtrusive Javascript] (with emphasis on [[Accessibility]])  
* [http://www.onlinetools.org/articles/unobtrusivejavascript/ online self-training course for Unobtrusive Javascript] (with emphasis on [[Accessibility]])  
   
   
[[Category:Developer]]
[[Category:Developer|Unobtrusive Javascript]]
[[Category:Accessibility]]
[[Category:Accessibility]]
[[Category:Javascript]]
[[Category:Javascript]]
[[Category:AJAX]]
[[Category:AJAX]]

Revision as of 10:16, 18 June 2007

Unobtrusive Javascript is a new approach to adding enhanced functionality to web pages with Javascript. It follows the lead of CSS, which allowed styling to be extracted from HTML into a seperate layer, by moving Javascript out of the main HTML document and assigning it via structural hooks. This leads to more readable, maintainable and re-usable code.

Unobtrusive Javascript in Moodle

Moodle now supports the Yahoo! user interface library which includes unobstrusive javascript as one of its primary design goals (along with Progressive enhancement and Hijax).

Unobtrusive Javascript and Accessibility

Javascript, and particularly AJAX, are often seen as incompatible with the goals of Accessibility but as long as the various related best practice are followed then the opposite is the case and these technologies can make web apps more usable and accessible. Unobstrusive javascript can certainly aid this process, though use by itself does not guarantee accessibility.

See also