Version: 0.1.00.2.00.3.00.4.01.0.01.0.11.0.21.0.31.1.01.1.11.2.02.0.02.0.12.0.2
//IE Fix, src: https://www.reddit.com/r/programminghorror/comments/6abmcr/nodelist_lacks_foreach_in_internet_explorer/
if (typeof(NodeList.prototype.forEach)!==typeof(alert)){
NodeList.prototype.forEach=Array.prototype.forEach;
}