I’m using this code for append some code using jQuery but it won’t work.
$('#'+DivId).append($(maincontent).fadeIn('slow'));
but if I use this then it works perfectly
$('#'+DivId).html(maincontent);
Does anybody know what is the problem with append()?
Thanks
use this