Finding a drag and drop checkbox control for HTML / JQuery

I was wondering if there is a jQuery control to do the following?

You have a list of checkboxes that the user, in addition to checking and unchecking, can drag and drop to reorder.

+3


source to share


1 answer


You can do this quite easily using the jQuery UI sortable method .



Here is a very basic example to get you started using the demo found in the link above with some checkboxes added.

+5


source







All Articles