tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

343540-1.html (338B)


      1 <html>
      2 <head>
      3 
      4 <script>
      5 
      6 function boo()
      7 {
      8  var div = document.getElementById("div"); 
      9  var dd = document.getElementById("dd"); 
     10  var newSpan = document.createElement('span'); 
     11  dd.insertBefore(newSpan, div);
     12 }
     13 
     14 window.addEventListener("load", boo);
     15 </script>
     16 
     17 </head>
     18 
     19 
     20 <body>
     21 
     22 <dd id="dd"><div id="div"></div></dd>
     23 
     24 </body>
     25 
     26 </html>