When I'm use development tools' link in Chrome I can select any tag(in source code) and info about chosen element are displayed(image below). I need write script that can do the same operation. How I can get width and height for every tag in a source code. Any idea?
.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
closed as not a real question by Caspar Kleijne, DaveRandom, hakre, Mathieu Imbert, hochl Oct 4 '12 at 14:00
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
There's this lovely getBoundingClientRect function. No need for jQuery. Works in every browser.
|
|||||||||||
|
|
You know jQuery? With this library, you can retrieve:
Same stuff for height:
|
|||
|
|