I am using this code to move divs simultaneously: link
The logic: If checked checkbox, use 'drag in group', otherwise, use 'drag per unit'.
But once the checkbox is unchecked (to use 'drag per unit') the same is not working as it should as in the following example: link
$('document').ready(function() {
$("#checkboxDragAll").click(function() {
if ($(this).is(':checked'))
{
//Se 'checkbox marcado' drag funciona em "grupo"
$(".d").multiDraggable({
group: $(".d")
});
//Setando o drag em .d2 em "unidade"
// $(".d").multiDraggable({
// group: ""
//});
} else {
//Se 'checkbox desmarcado' drag deveria funcionar em "unidade"!!!
// Mas se anteriormente setado em "grupo",
// o drag em "unidade" não está funcionando.
$(".d").draggable( "destroy" );
$(".d").draggable();
};
});
});
Somebody save me? : B