View Single Post
Old Aug 31st, 2005, 9:02 PM   #6
Ooble
I eat cake for breakfast.
 
Ooble's Avatar
 
Join Date: Jul 2004
Location: In my box.
Posts: 4,434
Rep Power: 9 Ooble is on a distinguished road
That's exactly what I was thinking.
// assuming you have an array of windows called "windows"

function focus (element)
{
	element = document.getElementById(element);
	
	i = 0;
	for (i = 1; i <= windows.length; i++)
	{
		windows.style.z-index = i;
	}
	
	element.style.z-index = i;
}
Not tested, but it should work with a couple of inevitable bug fixes.
__________________
Me :: You :: Them
Ooble is offline   Reply With Quote