What does it mean if fadeIn() goes from an opacity of 0% to 100% as soon as the fade timeperiod is up?
I've got this:
function ThreadPost(post, appendToElementId) {
if (post != null) {
$("#" + appendToElementId).append("<ol id='" + post.Id + "'></ol>");
$("#" + post.Id).hide().html(PostHtml(post)).fadeIn(5000);
}
}
PostHtml() returns a "<li>....</li>
".
When the page loads, the <ol>
is hidden. Then, after 5 seconds, the <ol>
suddenly appears. No fading occurs. Using Chrome.