1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
<html class="reftest-wait"> <head> <script> function boom() { var div = document.getElementById("div"); div.innerHTML = div.innerHTML.slice(1); setTimeout(c, 30); } function c() { div.innerHTML = div.innerHTML.slice(1); document.documentElement.removeAttribute("class"); } </script> </head> <body onload="boom();"> <div id="div">t ́</div> </body></html>