2008-12-30 15:51:51 +00:00
<!doctype html>
< html lang = "en" >
< head >
2009-01-16 22:51:33 +00:00
< title > jQuery UI Sortable - Default functionality< / title >
2009-01-07 02:36:51 +00:00
< link type = "text/css" href = "../../themes/base/ui.all.css" rel = "stylesheet" / >
2009-01-14 23:26:15 +00:00
< script type = "text/javascript" src = "../../jquery-1.3.js" > < / script >
2008-12-30 15:51:51 +00:00
< script type = "text/javascript" src = "../../ui/ui.core.js" > < / script >
< script type = "text/javascript" src = "../../ui/ui.sortable.js" > < / script >
2008-12-31 06:29:31 +00:00
< link type = "text/css" href = "../demos.css" rel = "stylesheet" / >
2008-12-30 15:51:51 +00:00
< style type = "text/css" >
2008-12-31 23:10:48 +00:00
#sortable { list-style-type: none; margin: 0; padding: 0; width: 60%; }
2009-01-03 15:10:19 +00:00
#sortable li { margin: 3px; padding: 0.4em; padding-left: 1.5em; font-size: 1.4em; height: 18px; }
#sortable li span { position: absolute; margin-left: -1.3em; }
2008-12-30 15:51:51 +00:00
< / style >
< script type = "text/javascript" >
$(function() {
2008-12-31 23:10:48 +00:00
$("#sortable").sortable();
2008-12-30 15:51:51 +00:00
});
< / script >
< / head >
< body >
2008-12-31 14:17:03 +00:00
< div class = "demo" >
2008-12-30 15:51:51 +00:00
2008-12-31 23:10:48 +00:00
< ul id = "sortable" >
2009-01-03 15:10:19 +00:00
< li class = "ui-state-default" > < span class = "ui-icon ui-icon-arrowthick-2-n-s" > < / span > Item 1< / li >
< li class = "ui-state-default" > < span class = "ui-icon ui-icon-arrowthick-2-n-s" > < / span > Item 2< / li >
< li class = "ui-state-default" > < span class = "ui-icon ui-icon-arrowthick-2-n-s" > < / span > Item 3< / li >
< li class = "ui-state-default" > < span class = "ui-icon ui-icon-arrowthick-2-n-s" > < / span > Item 4< / li >
< li class = "ui-state-default" > < span class = "ui-icon ui-icon-arrowthick-2-n-s" > < / span > Item 5< / li >
< li class = "ui-state-default" > < span class = "ui-icon ui-icon-arrowthick-2-n-s" > < / span > Item 6< / li >
< li class = "ui-state-default" > < span class = "ui-icon ui-icon-arrowthick-2-n-s" > < / span > Item 7< / li >
2008-12-30 15:51:51 +00:00
< / ul >
2008-12-31 14:17:03 +00:00
< / div > <!-- End demo -->
< div class = "demo-description" >
2009-01-16 22:51:33 +00:00
< p > Enable a group of DOM elements to be sortable. Click on and drag and element to a new spot within the list, and the other items will adjust to fit. By default, sortable items share < strong > draggable< / strong > properties.< / p >
2008-12-31 14:17:03 +00:00
< / div > <!-- End demo - description -->
2008-12-30 15:51:51 +00:00
< / body >
< / html >