Benjamin Sterling wrote:
If the cell is can be emptied after mouseout do $(selector).empty();


Otherwise try this:

var appendable = $('<span>Append me</span>');

$('#mouseover').hover(
    function() {
        appendable.appendTo('#append-here');
    },
    function() {
        appendable.remove(); // removes from dom but not from jQuery set
    }
);


--Klaus

Reply via email to