Use this:
[tt]
<script>
function changeDims(elemName, w, h)
{
document.getElementById(elemName).style.width = w;
document.getElementById(elemName).style.height = h;
}
</script>
. . .
<table id="first">
. . .
<a href="#" onclick="changeDims('first', 300, 100)">change elem1 size</a>
[/tt]
This work in Opera, IE5+ and Mozilla, but not eaxctly the same.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.