$(function() {
$("#set div").draggable({ stack: { group: '#set div', min: 1 } handle: 'p.handler2' });
});
anywhere wrong?
$(function() {
$("#set div").draggable({ stack: { group: '#set div', min: 1 } handle: 'p.handler2' });
});
anywhere wrong?
You need a comma between attribute declarations, stack
and handle
.
$(function() {
$("#set div").draggable({ stack: { group: '#set div', min: 1 }, handle: 'p.handler2' });
});
(Converted to answer so this can be taken off the unanswered list)