How to cover an IE windowed control (Select Box, ActiveX Object, etc.) with a DHTML layer.
http://dotnetjunkies.com/WebLog/jking/archive/2003/07/21/488.aspx
It’s awesome tip for DHTML menu over form elements(select)
Archive for August, 2004
http://dotnetjunkies.com/WebLog/jking/archive/2003/07/21/488.aspx
It’s awesome tip for DHTML menu over form elements(select)
I always forget to write a function in ActionScript/JavaScript to output a random number in specific range.
Math.random() * (max – min) + min
If you need a whole number, add Math.floor function to the result.