JQueryFrom LibzterRevision as of 15:40, 11 July 2009 by 192.138.111.176 (Talk)
jQuery
OverviewA fast and concise, although complete, JavaScript library that simplifies UI handling, events, Ajax and other common dynamic web tasks. jQuery has a very small footprint when it comes to size (<20kb, using compression) and is supported among many browsers (IE6+,FF2+,Opera,Chrome) Features
ExamplesA simple example showing a drag and drop feature <script type="text/javascript"> $(document).ready(function(){ $("#draggable").draggable(); $("#droppable").droppable({ drop: function() { alert('dropped'); } }); }); </script> <div id="droppable">Drop here</div> <div id="draggable">Drag me</div> Similar librariesAdvantages
Disadvantages
ReferenceDownloadInstallationThe installation is a simple as putting a couple of files in the right path of the webserver. User comments on this article (JQuery) |
||