asp.net - In javascript how to find the height and width -
i having .aspx , masterpage page. in masterpage loading aspx page . in aspx page design using generating table structure using code-behind server in javascript how find height , width .
regards, kumar
if you're looking table height , width, should it
var tbl = document.getelementbyid('tbldemo'); alert(tbl.offsetwidth + '\n' + tbl.offsetheight);
Comments
Post a Comment