drag-check-js
drag-check-js copied to clipboard
jQuery allow chaining by returning the set of elements
.dragCheck() doesn't return self (the jQuery object) so it's not possible to chain calls:
$(':checkboxes').dragCheck().css(...); is not possible, but should be
$(':checkboxes').css().css(...); allows chaining (good example)
Ok as I just saw it returns the DragCheck object... so this should be discussed first... and be solved the jQuery way then...