Ashus.ashus.net
How to find wide elements when making a web adaptive / responsive - Printable Version

+- Ashus.ashus.net (https://ashus.ashus.net)
+-- Forum: My creations (https://ashus.ashus.net/forum-3.html)
+--- Forum: Guides / Návody (https://ashus.ashus.net/forum-8.html)
+--- Thread: How to find wide elements when making a web adaptive / responsive (/thread-177.html)



How to find wide elements when making a web adaptive / responsive - Ashus - 14.9.2016

Provided you have jQuery, open you dev. tools, adjust the window to designated dimensions and put this to the console in your browser:

Code:
$(':visible').each(function(){var w = $(this).outerWidth(); if (w<=360) return; console.log(w, this)})

You can adjust the 360 px number to any number you need for your breakpoint.