SyntaxFix
Write A Post
Hire A Developer
Questions
The essence is this:
This works for me:
var new_item = $('<p>hello</p>').hide(); parent.append(new_item); new_item.show('normal');
or:
$('<p>hello</p>').hide().appendTo(parent).show('normal');