I have a function, that will print out some text, while an iframe content is loading:
// set "waiting" message:
$("#loadingStatus").html("Waiting for your advertisements to load...");
My question is, how do I add the fadeIn("slow") to the loading message above? I tried adding .fadeIn("slow") in the same line, but that did not work.