Skip to content

Instantly share code, notes, and snippets.

View clepple's full-sized avatar
⛱️
I do not have time to take on any new tasks.

Charles Lepple clepple

⛱️
I do not have time to take on any new tasks.
View GitHub Profile
@alisdair
alisdair / kill-sticky.js
Created May 29, 2013 13:43
Kill sticky headers.
(function () {
var i, elements = document.querySelectorAll('body *');
for (i = 0; i < elements.length; i++) {
if (getComputedStyle(elements[i]).position === 'fixed') {
elements[i].parentNode.removeChild(elements[i]);
}
}
})();