An ul list contains some items. The last item must always stay in a static position. I've tried to use cancel
option of the .sortable()
method, but it doesn't switch off sortable, just dragging.
<ul id="sort">
<li>Jquery</li>
<li>MooTools</li>
<li>Prototype</li>
<li>YUI</li>
<li class="last">must stay static (add position button)</li>
</ul>
$('#sort').sortable({
cancel: '.last'
});
Example fiddle: /
An ul list contains some items. The last item must always stay in a static position. I've tried to use cancel
option of the .sortable()
method, but it doesn't switch off sortable, just dragging.
<ul id="sort">
<li>Jquery</li>
<li>MooTools</li>
<li>Prototype</li>
<li>YUI</li>
<li class="last">must stay static (add position button)</li>
</ul>
$('#sort').sortable({
cancel: '.last'
});
Example fiddle: http://jsfiddle/mbarinov/JLZvY/
Share Improve this question edited Nov 14, 2011 at 8:51 JJJ 33.2k20 gold badges94 silver badges103 bronze badges asked Nov 14, 2011 at 8:48 NiLLNiLL 13.9k15 gold badges48 silver badges59 bronze badges1 Answer
Reset to default 14You can use the items options to specify a selector which excludes items that expose the last
class:
$('#sort').sortable({
items: "li:not(.last)"
});
You will find an updated fiddle here.