Thread: Javascript
View Single Post
04-07-2006, 11:56 PM
#12
Garrett is offline Garrett
Status: Waving
Join date: Aug 2005
Location:
Expertise:
Software:
 
Posts: 2,694
iTrader: 11 / 100%
 

Garrett is on a distinguished road

Send a message via MSN to Garrett

  Old

Is there a way to edit the code so it has an image while its on set-out, then it goes away after say 5 seconds?

function delayInfo(divName, delayTime){
window.setTimeout(
function() {
document.getElementById(divName).style.display = "block"
}
, delayTime)
}