Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save gianick/aee6f4dcc30b56bce094162037dd68b8 to your computer and use it in GitHub Desktop.
Save gianick/aee6f4dcc30b56bce094162037dd68b8 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