JQuery - add DOM element then remove it
up vote
2
down vote
favorite
I need to add a child div inside a parent div and then delete the child div in x sec.
There could be several children divs added to parent div.
What would the best way to identify and delete the child div?
$("#parent_div").prepend("<div>"+msg+"</div>");
Thanks.
jquery
add a comment |
up vote
2
down vote
favorite
I need to add a child div inside a parent div and then delete the child div in x sec.
There could be several children divs added to parent div.
What would the best way to identify and delete the child div?
$("#parent_div").prepend("<div>"+msg+"</div>");
Thanks.
jquery
add a comment |
up vote
2
down vote
favorite
up vote
2
down vote
favorite
I need to add a child div inside a parent div and then delete the child div in x sec.
There could be several children divs added to parent div.
What would the best way to identify and delete the child div?
$("#parent_div").prepend("<div>"+msg+"</div>");
Thanks.
jquery
I need to add a child div inside a parent div and then delete the child div in x sec.
There could be several children divs added to parent div.
What would the best way to identify and delete the child div?
$("#parent_div").prepend("<div>"+msg+"</div>");
Thanks.
jquery
jquery
asked Feb 11 '13 at 17:25
ihtus
1,31772748
1,31772748
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
up vote
7
down vote
accepted
By keeping a reference to it:
function doTheChildDivThing()
var child = $("<div>" + msg + "</div>");
$("#parent").prepend(child);
setTimeout(function()
child.remove();
, 1000);
Re your comment below:
why delay() (instead of setTimeout) is not working in that case?
delay
works with the effects queue. remove
isn't an effects-related method. You could certainly use delay
with one of the effects methods, though, like slideUp
. Then you'd remove the child within the completion callback of the effects method, like this:
function doTheChildDivThing()
var child = $("<div>" + msg + "</div>");
$("#parent").prepend(child);
child.delay(1000).slideUp(function()
child.remove();
);
3
Well, +1 (for being right), but that function name? Sounds like a terrible eighties party hit...
– David Thomas
Feb 11 '13 at 17:27
+1, I have no idea what exactly he was asking, but it looks like it can be it.
– gdoron
Feb 11 '13 at 17:28
2
@DavidThomas: LOL!!
– T.J. Crowder
Feb 11 '13 at 17:28
why delay() (instead of setTimeout) is not working in that case?
– ihtus
Feb 11 '13 at 17:46
@ihtus:delay
is only for use with effects-related messages, I've updated the answer with some information on how you could use it for this.
– T.J. Crowder
Feb 11 '13 at 18:03
add a comment |
up vote
0
down vote
Try this way:
$("<div/>",
// PROPERTIES HERE
text: "Click me",
id: "example",
"class": "myDiv", // ('class' is still better in quotes)
css:
color: "red",
fontSize: "3em",
cursor: "pointer"
,
on:
mouseenter: function()
console.log("PLEASE... "+ $(this).text());
,
click: function()
console.log("Hy! My ID is: "+ this.id);
,
append: "<i>!!</i>",
appendTo: "body" // Finally, append to any selector
);
// And remove
setTimeout(() =>
$('.myDiv').remove();
, 1000)
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
7
down vote
accepted
By keeping a reference to it:
function doTheChildDivThing()
var child = $("<div>" + msg + "</div>");
$("#parent").prepend(child);
setTimeout(function()
child.remove();
, 1000);
Re your comment below:
why delay() (instead of setTimeout) is not working in that case?
delay
works with the effects queue. remove
isn't an effects-related method. You could certainly use delay
with one of the effects methods, though, like slideUp
. Then you'd remove the child within the completion callback of the effects method, like this:
function doTheChildDivThing()
var child = $("<div>" + msg + "</div>");
$("#parent").prepend(child);
child.delay(1000).slideUp(function()
child.remove();
);
3
Well, +1 (for being right), but that function name? Sounds like a terrible eighties party hit...
– David Thomas
Feb 11 '13 at 17:27
+1, I have no idea what exactly he was asking, but it looks like it can be it.
– gdoron
Feb 11 '13 at 17:28
2
@DavidThomas: LOL!!
– T.J. Crowder
Feb 11 '13 at 17:28
why delay() (instead of setTimeout) is not working in that case?
– ihtus
Feb 11 '13 at 17:46
@ihtus:delay
is only for use with effects-related messages, I've updated the answer with some information on how you could use it for this.
– T.J. Crowder
Feb 11 '13 at 18:03
add a comment |
up vote
7
down vote
accepted
By keeping a reference to it:
function doTheChildDivThing()
var child = $("<div>" + msg + "</div>");
$("#parent").prepend(child);
setTimeout(function()
child.remove();
, 1000);
Re your comment below:
why delay() (instead of setTimeout) is not working in that case?
delay
works with the effects queue. remove
isn't an effects-related method. You could certainly use delay
with one of the effects methods, though, like slideUp
. Then you'd remove the child within the completion callback of the effects method, like this:
function doTheChildDivThing()
var child = $("<div>" + msg + "</div>");
$("#parent").prepend(child);
child.delay(1000).slideUp(function()
child.remove();
);
3
Well, +1 (for being right), but that function name? Sounds like a terrible eighties party hit...
– David Thomas
Feb 11 '13 at 17:27
+1, I have no idea what exactly he was asking, but it looks like it can be it.
– gdoron
Feb 11 '13 at 17:28
2
@DavidThomas: LOL!!
– T.J. Crowder
Feb 11 '13 at 17:28
why delay() (instead of setTimeout) is not working in that case?
– ihtus
Feb 11 '13 at 17:46
@ihtus:delay
is only for use with effects-related messages, I've updated the answer with some information on how you could use it for this.
– T.J. Crowder
Feb 11 '13 at 18:03
add a comment |
up vote
7
down vote
accepted
up vote
7
down vote
accepted
By keeping a reference to it:
function doTheChildDivThing()
var child = $("<div>" + msg + "</div>");
$("#parent").prepend(child);
setTimeout(function()
child.remove();
, 1000);
Re your comment below:
why delay() (instead of setTimeout) is not working in that case?
delay
works with the effects queue. remove
isn't an effects-related method. You could certainly use delay
with one of the effects methods, though, like slideUp
. Then you'd remove the child within the completion callback of the effects method, like this:
function doTheChildDivThing()
var child = $("<div>" + msg + "</div>");
$("#parent").prepend(child);
child.delay(1000).slideUp(function()
child.remove();
);
By keeping a reference to it:
function doTheChildDivThing()
var child = $("<div>" + msg + "</div>");
$("#parent").prepend(child);
setTimeout(function()
child.remove();
, 1000);
Re your comment below:
why delay() (instead of setTimeout) is not working in that case?
delay
works with the effects queue. remove
isn't an effects-related method. You could certainly use delay
with one of the effects methods, though, like slideUp
. Then you'd remove the child within the completion callback of the effects method, like this:
function doTheChildDivThing()
var child = $("<div>" + msg + "</div>");
$("#parent").prepend(child);
child.delay(1000).slideUp(function()
child.remove();
);
edited Feb 11 '13 at 18:03
answered Feb 11 '13 at 17:26
T.J. Crowder
672k11811881285
672k11811881285
3
Well, +1 (for being right), but that function name? Sounds like a terrible eighties party hit...
– David Thomas
Feb 11 '13 at 17:27
+1, I have no idea what exactly he was asking, but it looks like it can be it.
– gdoron
Feb 11 '13 at 17:28
2
@DavidThomas: LOL!!
– T.J. Crowder
Feb 11 '13 at 17:28
why delay() (instead of setTimeout) is not working in that case?
– ihtus
Feb 11 '13 at 17:46
@ihtus:delay
is only for use with effects-related messages, I've updated the answer with some information on how you could use it for this.
– T.J. Crowder
Feb 11 '13 at 18:03
add a comment |
3
Well, +1 (for being right), but that function name? Sounds like a terrible eighties party hit...
– David Thomas
Feb 11 '13 at 17:27
+1, I have no idea what exactly he was asking, but it looks like it can be it.
– gdoron
Feb 11 '13 at 17:28
2
@DavidThomas: LOL!!
– T.J. Crowder
Feb 11 '13 at 17:28
why delay() (instead of setTimeout) is not working in that case?
– ihtus
Feb 11 '13 at 17:46
@ihtus:delay
is only for use with effects-related messages, I've updated the answer with some information on how you could use it for this.
– T.J. Crowder
Feb 11 '13 at 18:03
3
3
Well, +1 (for being right), but that function name? Sounds like a terrible eighties party hit...
– David Thomas
Feb 11 '13 at 17:27
Well, +1 (for being right), but that function name? Sounds like a terrible eighties party hit...
– David Thomas
Feb 11 '13 at 17:27
+1, I have no idea what exactly he was asking, but it looks like it can be it.
– gdoron
Feb 11 '13 at 17:28
+1, I have no idea what exactly he was asking, but it looks like it can be it.
– gdoron
Feb 11 '13 at 17:28
2
2
@DavidThomas: LOL!!
– T.J. Crowder
Feb 11 '13 at 17:28
@DavidThomas: LOL!!
– T.J. Crowder
Feb 11 '13 at 17:28
why delay() (instead of setTimeout) is not working in that case?
– ihtus
Feb 11 '13 at 17:46
why delay() (instead of setTimeout) is not working in that case?
– ihtus
Feb 11 '13 at 17:46
@ihtus:
delay
is only for use with effects-related messages, I've updated the answer with some information on how you could use it for this.– T.J. Crowder
Feb 11 '13 at 18:03
@ihtus:
delay
is only for use with effects-related messages, I've updated the answer with some information on how you could use it for this.– T.J. Crowder
Feb 11 '13 at 18:03
add a comment |
up vote
0
down vote
Try this way:
$("<div/>",
// PROPERTIES HERE
text: "Click me",
id: "example",
"class": "myDiv", // ('class' is still better in quotes)
css:
color: "red",
fontSize: "3em",
cursor: "pointer"
,
on:
mouseenter: function()
console.log("PLEASE... "+ $(this).text());
,
click: function()
console.log("Hy! My ID is: "+ this.id);
,
append: "<i>!!</i>",
appendTo: "body" // Finally, append to any selector
);
// And remove
setTimeout(() =>
$('.myDiv').remove();
, 1000)
add a comment |
up vote
0
down vote
Try this way:
$("<div/>",
// PROPERTIES HERE
text: "Click me",
id: "example",
"class": "myDiv", // ('class' is still better in quotes)
css:
color: "red",
fontSize: "3em",
cursor: "pointer"
,
on:
mouseenter: function()
console.log("PLEASE... "+ $(this).text());
,
click: function()
console.log("Hy! My ID is: "+ this.id);
,
append: "<i>!!</i>",
appendTo: "body" // Finally, append to any selector
);
// And remove
setTimeout(() =>
$('.myDiv').remove();
, 1000)
add a comment |
up vote
0
down vote
up vote
0
down vote
Try this way:
$("<div/>",
// PROPERTIES HERE
text: "Click me",
id: "example",
"class": "myDiv", // ('class' is still better in quotes)
css:
color: "red",
fontSize: "3em",
cursor: "pointer"
,
on:
mouseenter: function()
console.log("PLEASE... "+ $(this).text());
,
click: function()
console.log("Hy! My ID is: "+ this.id);
,
append: "<i>!!</i>",
appendTo: "body" // Finally, append to any selector
);
// And remove
setTimeout(() =>
$('.myDiv').remove();
, 1000)
Try this way:
$("<div/>",
// PROPERTIES HERE
text: "Click me",
id: "example",
"class": "myDiv", // ('class' is still better in quotes)
css:
color: "red",
fontSize: "3em",
cursor: "pointer"
,
on:
mouseenter: function()
console.log("PLEASE... "+ $(this).text());
,
click: function()
console.log("Hy! My ID is: "+ this.id);
,
append: "<i>!!</i>",
appendTo: "body" // Finally, append to any selector
);
// And remove
setTimeout(() =>
$('.myDiv').remove();
, 1000)
answered Nov 11 at 17:11
Re_p1ay
67
67
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f14817422%2fjquery-add-dom-element-then-remove-it%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown