I am wanting to set a timeout for a function...
if not in a timeout, the function would be called as follows:
transition([html element],[string],[int]);
e.g.
el = document.getElementById("mydiv")
transition(el,"my div",0);
I am having problems doing this with a setTimeout though...
el =...