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

Popular posts from this blog

c++ - How do I get a multi line tooltip in MFC -

c# - DataTable to EnumerableRowCollection -