How to add the fadeIn () effect, along with an append ().
How to add the fadeIn () effect, along with an append ().
Test like this:
var count = 5;
$('#addCount').click(function () {
var p = $('<p>' + count + '</p>'); // criar o elemento
p.hide(); // escondê-lo
$('#new_elem').append(p); // "appendê-lo" ou "appendar" o <p>
p.fadeIn(); // fazer fade in com ele já na página
count++;
});