Skip to content

Instantly share code, notes, and snippets.

View yeunghiepdu's full-sized avatar

Kien Bui yeunghiepdu

View GitHub Profile
@newhope
newhope / find-oversized-element.js
Created October 25, 2017 17:37 — forked from headquarters/find-oversized-element.js
Find the offending element causing a horizontal scrollbar at any screen width (requires jQuery).
var screenWidth = window.innerWidth;
var visibleElements = jQuery(":visible");
visibleElements.each(function(){
var $this = jQuery(this);
if($this.width() > screenWidth){
$this.css("border", "1px solid green");
console.log("Screen width is " + screenWidth + " and the following element is " + $this.width(), $this);
}
});