Skip to content

Instantly share code, notes, and snippets.

@newhope
Forked from headquarters/find-oversized-element.js
Created October 25, 2017 17:37
Show Gist options
  • Save newhope/cb3f8c7c7c098d24f99d5d680a54ff35 to your computer and use it in GitHub Desktop.
Save newhope/cb3f8c7c7c098d24f99d5d680a54ff35 to your computer and use it in GitHub Desktop.
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);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment