Advertisement
saimpot

Vres poia div exoun overflow sto mobile

Sep 9th, 2021
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. var docWidth = document.documentElement.offsetWidth;
  2.  
  3. [].forEach.call(
  4. document.querySelectorAll('*'),
  5. function(el) {
  6. if (el.offsetWidth > docWidth) {
  7. console.log(el);
  8. }
  9. }
  10. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement