asmodeus94

hostuje.netOdswiezacz

Oct 25th, 2014
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var d, collection, iframeC, fileId;
  2. d = document;
  3. collection = d.getElementsByTagName('a');
  4. for(var i = 0 ; i < collection.length ; i++){
  5.     if(collection[i].innerHTML.indexOf('Odnów plik') != -1)
  6.     {
  7.         fileId = collection[i].onclick.toString();
  8.         fileId = fileId.split("'");
  9.         fileId = fileId[1];
  10.             iframeC = d.createElement("iframe");
  11.         iframeC.src = '?opcja=odnow&f_id='+fileId;
  12.             iframeC.onload = function()
  13.             {
  14.                 this.parentNode.removeChild(this);
  15.             }
  16.         d.body.appendChild(iframeC);
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment