tiamat2012
Programmer
Hello all,
I'm trying to do some setting of my code with the window.onload function, but its not working. My javascript code is:
does anyone have any ideas?
You can checkout the whole website at kerryj.awardspace.com/index.html
Thank you for your time,
Kerry
I'm trying to do some setting of my code with the window.onload function, but its not working. My javascript code is:
Code:
[blue]
window.onload
{
ConvertColumnHands("tlmenu");
}
[/blue]
function send(var addy)
{
window.location=addy;
}
function ConvertColumnHands(xTableId)
{
var cols = document.getElementById(xTableId).getElementsByTagName("td");
for(i=0; i<cols.length; i++)
{
cols[i].onmouseover = new Function("this.className='highlight'");
cols[i].onmouseout = new Function("this.className=''");
}
}
</script>
does anyone have any ideas?
You can checkout the whole website at kerryj.awardspace.com/index.html
Thank you for your time,
Kerry