Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var d, collection, iframeC, fileId;
- d = document;
- collection = d.getElementsByTagName('a');
- for(var i = 0 ; i < collection.length ; i++){
- if(collection[i].innerHTML.indexOf('Odnów plik') != -1)
- {
- fileId = collection[i].onclick.toString();
- fileId = fileId.split("'");
- fileId = fileId[1];
- iframeC = d.createElement("iframe");
- iframeC.src = '?opcja=odnow&f_id='+fileId;
- iframeC.onload = function()
- {
- this.parentNode.removeChild(this);
- }
- d.body.appendChild(iframeC);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment