I'm having problems changing the width of a table and a td inside the table.
My code is:
and the link to call the function:
Hope someone can help.
staffa
My code is:
Code:
<script type="text/javascript" language="javascript">
function resizeWin(w){
document.getElementById("mainTBL").style.width = w;
w2 = w - 40;
document.getElementById("mainHeaderTD").style.width = w2;
}
</script>
and the link to call the function:
Code:
<a href="<?php echo $_SERVER['PHP_SELF']; ?>" onClick="resizeWin(700)">700px</a>
Hope someone can help.
staffa