tags:

views:

126

answers:

3
+1  A: 

Without actually seeing it, I'd presume that it is an artifact of either #container or of // more content. $.remove() literally removes the element from the DOM and forces a redraw, so assuming that it's working (syntax appears fine), it is certainly not a result of .success.

cpharmston
Well, at least I have some ideas and inklings about where to go from here. I'll post as I have more success.
EvilChookie
While I solved the question myself, it was your comment that assisted in solving. Thanks a bunch.
EvilChookie
+1  A: 

Try hide() instead of remove?

psychotik
That didn't do it.
EvilChookie
A: 

I solved it, there was a <br> tag hiding under my notice that was still there after fade out.

So, in order to hide the first element after the div, I changed my jquery to:

$(".success").fadeOut(6000, function(){
    $(".success + br").remove();
});

Which removes the very next item in the dom following the selector. From the jQuery Manual.

EvilChookie