Is there a way to achieve a fadeIn effect without interfering with margins when the object is hidden from the document? I would like it to animate from opacity 0, but I am struggling to make it work. Any suggestions or ideas would be greatly appreciated. Thank you!
$(document).ready(function(){
$("#item").css("opacity", 0).delay(13000).fadeIn(2000);
});