Feedback on: irt.org FAQ Knowledge Base Q1594
Worth:
Worth reading
Length:
Just right
Technical:
Just right
Comments:
Just wondering how I could do the same but without the onLoad event, using instead the <script> tag on the <head> of the page. Nice item, though. :-)
Worth:
Very worth reading
Comments:
Here's easy (didn't think of it after implementing the stuff suggested here):
JabbaScript
function getTableWidth() {
alert(document.all("blah").width) ;
alert(document.all("blah").height) ;
}
and in body
<table id=blah>
enjoy!