Swappable - jQuery Plugin

  |   Home  |   List  |   Grid  |   Row  |   Download  |   Blog

Introduction

Swappable is a jQuery plugin enables a group of DOM elements to be swappable. Click on and drag an element to a new spot within the list; drag element and drop one will swap and the other items will not affected. By default, swappable items share sortable properties.

DETAILS

Similar to "Sortable", but only two elements of the selected group are affected: dragged and dropped which are swapped. All other elements stay at their current positions. This plugin is built based on existing "Sortable" jQuery plugin and inherits all sortable options except "cursorAt" and "items" ones (explained below)

Depends:

  1. jquery.ui.core.js
  2. jquery.ui.mouse.js
  3. jquery.ui.widget.js
  4. jquery.ui.sortable.js
To add the feature to a group of elements:
Minimal configuration:

$("#swappable").swappable({
   items: '.itemClass',
   cursorAt: {top:-10}
});


Option's specific:

Example:

<ul id="foo">
   <li class="bar"><li>
   <li class="bar"><li>
   <li class="bar"><li>
</ul>

$("#foo").swappable({
   items:'.bar', // Mandatory option, class only.
   cursorAt: {top:-20}, // MUST be set to negative. Default doesn't work!
});


Add this statement (optional) to disable unwilling text selection
$("#swappable").disableSelection();



©2010 Vadim Kiryukhin