The effect I'm after is to have an div go blank for, say, 800ms and then be filled with content.
I already have a js function which makes any content in the div "display none"; I'm looking for the way to combine this with a jQuery 'get' call. Can I do:
myfunction() {
displayNone(); setTimeout('jQueryfunction', 800);
}
?