JQueryFrom Libzter
jQuery
[edit] 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) [edit] Features
[edit] 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> [edit] Similar libraries[edit] Advantages
[edit] Disadvantages
[edit] Reference[edit] Download[edit] InstallationThe installation is a simple as putting a couple of files in the right path of the webserver. User comments on this article (JQuery) |
|||||||||||||||