Links

Lists

Latest Updates

Ruby On Rails List
Python list
Advanced Java
The JavaScript List
Apache Users
Full Disclosure
Linux Security

Search the archives!


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Javascript] Displaying a Div Before Window.Open


  • From: javascript@xxxxxxxxxx (javascript@xxxxxxxxxx)
  • Subject: [Javascript] Displaying a Div Before Window.Open
  • Date: Wed, 24 Oct 2001 09:20:00 -0000

How can I display a div just before a Window Opens?

The Div- Hourglass - Shows after the window opens and I want it to 
show before. Please help me. The function is below.


function showFormKiller( RegID )
	{
	        oHourGlass = document.all.HourGlass
		oHourGlass.style.visibility = "visible";
		window.open( "FormKiller.asp?RegID=" + 
RegID , "FormKiller", 'fullscreen' );
		
	}