So I have a div with a background that covers the entire view. Inside of that i have an h2-tag. Is it possible to fade-out the background, whilst unfading the h2-tag?
The structure of the website prevents me from moving the h2-tag outside of the div.
eg.
$('#intro').fadeTo('slow',0.67,function(){
$("h2").css("color","black");
$("h2").css("opacity","1");