Last active
December 22, 2015 16:54
-
-
Save gluschenko/4c15b064e83d8d2161dd to your computer and use it in GitHub Desktop.
Paste this code to the developer console (F12).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
document.body.innerHTML = "<div id='iii'></div>" + document.body.innerHTML; | |
var iii = document.getElementById("iii"); | |
var table = document.getElementsByTagName("table")[0]; | |
table.style.display = "none"; | |
var dom = document.getElementsByTagName("a"); | |
var count = 0; | |
var interval = setInterval(function(){ | |
if(count < dom.length){ | |
var img = document.createElement("img"); | |
img.src = dom[count].innerText; | |
img.style.height = "60px"; | |
iii.appendChild(img); | |
count++; | |
} | |
}, 100); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment