View Single Post
Old Aug 31st, 2005, 11:40 PM   #9
Lance
Programmer
 
Lance's Avatar
 
Join Date: Oct 2004
Location: Chicago, IL USA
Posts: 74
Rep Power: 4 Lance is on a distinguished road
Send a message via AIM to Lance
var zindex = 5;
function raise(element)
{
	document.getElementById(element).style.zIndex = zindex;
	zindex++;
}

Yep. I did it. Simple.

Ooble: You made it more complex than it needed to be. :/

Eryk: They were actually taken from a tutorial. --> http://www.brainjar.com/dhtml/drag/

Rest of the code is mine.
__________________
/* LANCE */
C++;  /* this makes C bigger but returns the old value */
char *site = "slackwise.net",
     *home = "lance.slackwise.net",
     *pics = "flickr.com/photos/slackwise";
Lance is offline   Reply With Quote