View Single Post
Old May 26th, 2006, 10:59 AM   #15
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
If I'm using a single element a lot, I'll "cache" it in a variable.

function DoSomethingCool ()
{
    var coolness = document.getElementById("coolness");
    
    // do lots of stuff with "coolness" so I don't have to type the long stuff
}
__________________
Me :: You :: Them
Ooble is offline   Reply With Quote