Thread: Javascript
View Single Post
04-03-2006, 10:06 PM
#6
Jonny is offline Jonny
Status: Member
Join date: Feb 2005
Location: UK
Expertise:
Software:
 
Posts: 335
iTrader: 0 / 0%
 

Jonny is on a distinguished road

  Old

Sure, try this:

HTML Code:
function delayPage(divName, delayTime){
window.setTimeout( 

  function() {
      document.getElementById(divName).style.display = "block"
  }

 , delayTime)

}