Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Getting jQuery-inserted DOM elements without requerying for element after insertion

Is there a way to store a newly prepended element (with jQuery) into a var?

I want to do something like this:

var new_div = $('#my-div').prepend('<div>Something new</div>');

setTimeout(function () {
    new_div.remove();
}, 2000);
share|improve this question
This question has been answered here: stackoverflow.com/questions/3655627/… – DeweyOx Jul 20 '12 at 15:18
Also having a look at the documentation helps: api.jquery.com/category/manipulation/dom-insertion-inside – Felix Kling Jul 20 '12 at 15:22

marked as duplicate by Felix Kling, NULL, Jeremy Banks, Juhana, JMax Jul 23 '12 at 6:34

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 2 down vote accepted

In order to store the newly created div in your variable, you have to start with the creation of the div, then use prependTo:

var new_div = $('<div>Something new</div>').prependTo('#my-div');

setTimeout(function () {
    new_div.remove();
}, 2000);
share|improve this answer
var newItem = $('<div>Something new</div>');
new_div.prepend(newItem);

setTimeout(function () {
    newItem.remove();
}, 2000);

Assuming new_div is a jquery object in the DOM ( like another div)

Working sample : http://jsfiddle.net/exQTa/

share|improve this answer
var new_div = $('<div>Something new</div>');

$('#my-div').prepend(new_div);

var timer = setTimeout(function () {
    new_div.remove();
}, 2000);

Or more jQuery'ish:

$('<div>Something new</div>').prependTo('#my-div').delay(2000).queue(function() {
    $(this).remove(); 
});

FIDDLE

share|improve this answer

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