I've got a photo gallery and a grid of thumbnails. Is there a jQuery or JS package I can use to allow drag and drop sorting of the thumbnails?
Something similar to this:
http://demos.codexworld.com/dragdrop-image-reorder/
http://jqueryui.com/sortable/#display-grid
BUT I also require the ability to select multiple photos at once to sort. Ctrl + click
to select individual images in aggregate, BUT also Shift + click
to select all images between and inclusive of two images.
jQuery Selectable only supports Ctrl + click
. There is nothing for Shift + click
.
This looks promising:
https://github.com/shvetsgroup/jquery.multisortable
Any other recommendations or some kind of industry standard package that I might be unaware of?