Skip to content

Instantly share code, notes, and snippets.

View JacquesMarais's full-sized avatar

Jacques Marais JacquesMarais

  • Cape Town, South Africa
View GitHub Profile
if (!document.querySelectorAll) {
document.querySelectorAll = function(selector) {
var doc = document,
head = doc.documentElement.firstChild,
styleTag = doc.createElement('STYLE');
head.appendChild(styleTag);
doc.__qsaels = [];
styleTag.styleSheet.cssText = selector + "{x:expression(document.__qsaels.push(this))}";
window.scrollBy(0, 0);