I need to get the size taken up by the elements on an HTML page.
Not the client width of the browser.
As I can't enforce the html to have everything inside a div, because it's user-provided, I need to know that size.
I tried to get the body element size but can't get it. ( tried .width and style.width but neither worked )
|
|
|||||||
|
|
Unless you know specifically which content elements you want to measure and you KNOW that they aren't elastic content elements like a div that go full width regardless of actually content, you can't do this. If you did know which elements you wanted to measure, you can iterate through all of them get their size and position and accumulate a bounding rect that was the union of all interesting elements. But if this is arbitrary HTML (as you described it) that you don't know, you can't know the difference between something you care about and an arbitrary container that just goes full width because it does that naturally. Look at wordwrapping text in a containing div for example. The containing div goes full width so it will always be full width. The height of the containing div would be ok to measure, but the width would always be full width and the height would only fit that particular width. Change the width and the height would be different. |
||||
|
|
|
Try using jQuery width() function http://api.jquery.com/width/. |
|||||||
|
|
It would help if you used a library like jQuery... Browsers have different ways of reporting widths... in jQuery you can do this... More in http://api.jquery.com/width |
|||
|
|