Bnaya

Invite all facebook

Feb 16th, 2014
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var arrayMethods = Object.getOwnPropertyNames( Array.prototype );
  2.  
  3. arrayMethods.forEach( attachArrayMethodsToNodeList );
  4.  
  5. function attachArrayMethodsToNodeList(methodName)
  6. {
  7.     NodeList.prototype[methodName] = Array.prototype[methodName];
  8. };
  9. document.querySelectorAll('.multiColumnCheckable .checkbox').forEach(function (el) {el.click()})
Advertisement
Add Comment
Please, Sign In to add comment