mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-09 09:58:57 +00:00
10 lines
242 B
HTML
10 lines
242 B
HTML
<input form="f" id="x" xmlns="http://www.w3.org/1999/xhtml">
|
|
<form id="f"></form>
|
|
<script>
|
|
window.addEventListener("load", function() {
|
|
var x = document.getElementById("x");
|
|
x.appendChild(x.cloneNode(true));
|
|
}, false);
|
|
</script>
|
|
</input>
|