Skip to content

Instantly share code, notes, and snippets.

View zeeshan1's full-sized avatar

Zeeshan zeeshan1

View GitHub Profile
@zeeshan1
zeeshan1 / README.md
Created August 1, 2018 04:50 — forked from addyosmani/README.md
108 byte CSS Layout Debugger

CSS Layout Debugger

A tweet-sized debugger for visualizing your CSS layouts. Outlines every DOM element on your page a random (valid) CSS hex color.

One-line version to paste in your DevTools

Use $$ if your browser aliases it:

~ 108 byte version

@zeeshan1
zeeshan1 / jquery-scroll-bottom.js
Created July 18, 2018 10:07 — forked from toshimaru/jquery-scroll-bottom.js
Detect the scrolling to bottom of the page using jQuery.
$(window).on("scroll", function() {
var scrollHeight = $(document).height();
var scrollPosition = $(window).height() + $(window).scrollTop();
if ((scrollHeight - scrollPosition) / scrollHeight === 0) {
// when scroll to bottom of the page
}
});