This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// When you have a huge amount of DOM elements! | |
// Using an array instead of a loop by 'shifting' the array speeds up the iterations | |
// and setTimeout prevents the browser from locking up. | |
;(function(){ | |
var customScripts = customScripts || {} | |
customScripts.selectorAllToArray = function( selector ){ | |
NewerOlder