Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 17th, 2012  |  syntax: JavaScript  |  size: 0.24 KB  |  hits: 342  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. var f_id = setInterval(function() {
  2.     var e= document.createEvent('MouseEvent');
  3.     e.initEvent('click', false, false);
  4.     var o =  document.getElementById("J_Vol_Brick_Btn");
  5.     if(!!o) {
  6.         o.dispatchEvent(e);
  7.     }
  8. }, 300)