var content = "<div id='blah'>Hello stuff here</div>"
$("#mycontent").append(content).fadeIn(999);
Unfortunately, the desired effect is not achieved with this code.
I am trying to create a sleek animation when adding new content.
Please note: only the newly added "blah" div should have a fading effect, not the entire section of "mycontent".