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.










share|improve this question

























    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.










    share|improve this question























      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.










      share|improve this question













      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Feb 11 '13 at 17:25









      ihtus

      1,31772748




      1,31772748






















          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();
          );






          share|improve this answer


















          • 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

















          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)





          share|improve this answer




















            Your Answer






            StackExchange.ifUsing("editor", function ()
            StackExchange.using("externalEditor", function ()
            StackExchange.using("snippets", function ()
            StackExchange.snippets.init();
            );
            );
            , "code-snippets");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "1"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            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

























            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();
            );






            share|improve this answer


















            • 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














            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();
            );






            share|improve this answer


















            • 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












            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();
            );






            share|improve this answer














            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();
            );







            share|improve this answer














            share|improve this answer



            share|improve this answer








            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












            • 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












            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)





            share|improve this answer
























              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)





              share|improve this answer






















                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)





                share|improve this answer












                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)






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 11 at 17:11









                Re_p1ay

                67




                67



























                    draft saved

                    draft discarded
















































                    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.




                    draft saved


                    draft discarded














                    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





















































                    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







                    這個網誌中的熱門文章

                    Barbados

                    How to read a connectionString WITH PROVIDER in .NET Core?

                    Node.js Script on GitHub Pages or Amazon S3