I’m having problems getting a div to appear using jquery after 5 seconds.
right now I was using
$(document).ready(function() {
$(“#message”).delay(delay).fadeIn(5000);
});
But it’s not working (#message being the name of the div serounding the content I’d like to show)
If anyone could help me get it working that would be great.
Thanks
Is there a
delayvariable defined that you are passing into thedelayfunction? What you pass to delay should be how long to wait until doing the next function. I’d think you’d want something like this: