Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function fixGreed(){
- td=document.getElementsByClassName("download")[0].getElementsByTagName("table")[1].getElementsByTagName("td")[1];
- td.innerHTML+="<button onclick='showAll();'>Показать все</button>";
- debugger
- }
- function showAll(){
- td=document.getElementsByClassName("download")[0].getElementsByTagName("table")[1].getElementsByTagName("td")[1];
- lnks=td.getElementsByTagName("a");
- wnd = window.open();
- wnd.focus();
- wnd.document.open();
- txt="<html><head><title>Все фото</title></head><body>";
- for(i=0;i<lnks.length;i++)
- txt+="<img src='http://protect.gost.ru/image.ashx?page="+lnks[i].href.split("pageK=")[1]+"'><br>";
- txt+="</body></html>";
- wnd.document.write(txt);
- }
- document.addEventListener("DOMcontentLoaded",fixGreed,false);
Add Comment
Please, Sign In to add comment