Does anyone know if the ROWS and COLS properties of the <FRAMSET> tag can be JavaScript variables? Because they don't seem to be working as they should... If not any ideas?
Printable View
Does anyone know if the ROWS and COLS properties of the <FRAMSET> tag can be JavaScript variables? Because they don't seem to be working as they should... If not any ideas?
sure...
:)Code:<html>
<script>
function doHeight()
{
document.all.frameset1.rows = "25%,*";
}
</script>
<frameset ID="frameset1" rows="*,*" onLoad="doHeight()">
<frame src="">
<frame src="">
</frameset>
</html>