vote up 0 vote down star

I have two div.containers. Both containers have div.item. With jQuery, how can I swap div.item elements by drag & drop? Both element should able to re-swap again.

Is there any simple way to do this?

Thanks...

flag

1 Answer

vote up 0 vote down check

OK, I got the dirty solution...

$(document).ready(function () {
    src = null;
    options = {
    	revert:true,
    	axis: 'x',
    	opacity: 0.8,
    	start: function() {
    		src = $(this).parent();
    	}
    };

    $(".item").draggable(options);
    $(".container").droppable({
    	drop: function(event, ui) {
    		src.append(
    			$('.item', this).remove().clone()
    			.removeClass().addClass("item")
    			.css({"left": '', "opacity": ''})
    			.draggable(options)
    		);

    		$(this).append(
    			ui.draggable.remove().clone()
    			.removeClass().addClass("item")
    			.css({"left": '', "opacity": ''})
    			.draggable(options)
    		);
    	}
    });
});

Hope, someone could improve this... :)

Cheer...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.