I am new to jQuery and struggling with the sortable option in jQueryUI.When you click on the delete icon i want the dvd to be added to the unselected area and the icon to change to a plus (+).When you then click on the plus icon in the unselected area i want the item to move into the "added area" and the icon to change to a "bin"Same principle for when you drag and drop an item from one div to another. Just need the icons to toggle depending on the div they are in.I have a demo here: - http://jsfiddle.net/w3vvL/3/\[code\]$("#gallery").sortable({ connectWith: "#trash" }); $("#trash").sortable({ connectWith: "#gallery"\[/code\]});Any help / pointers would be great.