mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-19 02:43:07 +09:00
23 lines
388 B
HTML
23 lines
388 B
HTML
<html>
|
|
<head>
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
document.getElementById("div").contentEditable = "true";
|
|
document.getElementById("div").focus();
|
|
document.getElementById("div").contentEditable = "false";
|
|
|
|
document.getElementById("table").contentEditable = "true";
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="boom();">
|
|
|
|
<table id="table"><td></td></table><div id="div"></div>
|
|
|
|
</body>
|
|
|
|
</html>
|