Created
September 30, 2016 12:05
-
-
Save netsi1964/bfbcf99167fe2a8db847248099fc85c3 to your computer and use it in GitHub Desktop.
Snippet: add element dimension to its title attribute (tooltip)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Array.from(document.querySelectorAll('*')).map(function(e) {c=getComputedStyle(e);w=c.width;(w!=='auto')?e.setAttribute('title', parseInt(w)+'x'+parseInt(c.height)):'';}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment