Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- imgs = document.getElementsByTagName("img");
- for (idx in imgs) {
- // console.log(imgs[idx]);
- element = imgs[idx];
- try {
- coords = element.getClientRects()[0];
- // console.log(coords);
- value = coords.x + coords.y + coords.width + coords.height + coords.left + coords.right;
- console.log(value);
- } catch (e) {
- // console.log(e);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement