I am using fadeIn effect on the body of my pages, but there is a particular page with a big background image which i have included in the body tag of that image however it does not fade in which ruins the effect. How can i achieve that? Here is my current code..
$(document).ready(function() {
$("body").css("display", "none");
$("body").fadeIn(3000);
});
body{
background: #ffffff url("../images/test.jpg") no-repeat;
z-index: -2;
}