¿Cómo se eliminaría el artículo del carrito de compras?jquery draggable droppable remove dropped
Naturalmente, es posible que desee poder arrastrar y soltar el elemento de nuevo.
$(function() {
$("#catalog").accordion();
$("#catalog li").draggable({
appendTo: "body",
helper: "clone"
});
$("#cart ol").droppable({
activeClass: "ui-state-default",
hoverClass: "ui-state-hover",
accept: ":not(.ui-sortable-helper)",
drop: function(event, ui) {
$(this).find(".placeholder").remove();
$("").text(ui.draggable.text()).appendTo(this);
}
}).sortable({
items: "li:not(.placeholder)",
sort: function() {
// gets added unintentionally by droppable interacting with sortable
// using connectWithSortable fixes this, but doesn't allow you to customize active/hoverClass options
$(this).removeClass("ui-state-default");
}
});
});
... TY ... ¡tanto! ¡Esto ayudará a muchas personas con el mismo problema! – Spechal
Gran respuesta Andrew, gracias. –
Hola Andrew +1, ¿qué ocurre si queremos agregar un botón de cerrar (hipervínculo de aspecto cercano) al artículo en el carrito en lugar de arrastrar y soltar? Supongo que en ese caso no necesito la función 'catalog li.droppable'. ¿Cómo hacer eso usando tu código? – aspiring