I have a simple script but the fadein() part is not working. Not getting any errors though..
$('<ol/>', {
'class': 'raw-list',
html: items.join('')
}).appendTo('.json').fadeIn(1000);
});
Try to hide it first with the following code :
$('<ol/>', {
'class': 'raw-list',
html: items.join('')
})
.hide()
.fadeIn(1000)
.appendTo('.json');
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With