Changes between Version 1 and Version 2 of FrequentlyAskedQuestionsJQuery


Ignore:
Timestamp:
01/11/09 12:33:58 (16 years ago)
Author:
Fran Boon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • FrequentlyAskedQuestionsJQuery

    v1 v2  
    1 ==   ==
     1== Why jQuery? ==
     2
     3jQuery is a modern lightweight library which provides a lot of power to easily do advanced effects.
     4
     5It supports 'Unobstrusive Javascript' to provide easier separation of Presentation (Markup) from Code:
     6 * http://en.wikipedia.org/wiki/Unobtrusive_JavaScript
     7
     8The fact that Web2Py includes this by default makes it an obvious choice, but it would likely have been chosen even without that.
     9
     10There are a lot of plugins available:
     11 * http://plugins.jquery.com/
     12
     13SahanaPy currently uses:
     14 * ClueTip (used for the form field 'Help' popup)
     15  * http://plugins.learningjquery.com/cluetip/
     16
     17 * ClockPick (used by Web2Py for Date input)
     18  * http://www.oakcitygraphics.com/jquery/clockpick/trunk/ClockPick.cfm
     19
     20 * FancyZoom (used by Web2Py's T2 module to display images)
    221
    322----