mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-03 14:28:39 +09:00
23 lines
432 B
HTML
23 lines
432 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<script>
|
||
|
|
|
||
|
|
function boom()
|
||
|
|
{
|
||
|
|
var x = document.getElementById("x");
|
||
|
|
|
||
|
|
window.getSelection().removeAllRanges();
|
||
|
|
|
||
|
|
var range = document.createRange();
|
||
|
|
range.setStart(x, 0);
|
||
|
|
range.setEnd(x, 0);
|
||
|
|
window.getSelection().addRange(range);
|
||
|
|
|
||
|
|
document.execCommand("delete", false, "null");
|
||
|
|
}
|
||
|
|
|
||
|
|
</script>
|
||
|
|
</head>
|
||
|
|
<body contenteditable="true" onload="boom();"><div></div><span id="x"></span></body>
|
||
|
|
</html>
|