зеркало из https://github.com/mozilla/gecko-dev.git
11 строки
227 B
HTML
11 строки
227 B
HTML
|
<script>
|
||
|
function doe(){
|
||
|
window.focus();
|
||
|
window.getSelection().collapse(document.body, 0);
|
||
|
}
|
||
|
setTimeout(doe,50);
|
||
|
|
||
|
setTimeout(function() {window.location.reload()}, 200);
|
||
|
</script>
|
||
|
<span contenteditable="true"></span>
|