Skip to content

Instantly share code, notes, and snippets.

@netsi1964
Created September 30, 2016 12:05
Show Gist options
  • Select an option

  • Save netsi1964/bfbcf99167fe2a8db847248099fc85c3 to your computer and use it in GitHub Desktop.

Select an option

Save netsi1964/bfbcf99167fe2a8db847248099fc85c3 to your computer and use it in GitHub Desktop.
Snippet: add element dimension to its title attribute (tooltip)
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