mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-20 23:37:33 +09:00
16 lines
288 B
HTML
16 lines
288 B
HTML
<!DOCTYPE html>
|
|
<body onload="f()">
|
|
<p>First</p>
|
|
<div>
|
|
<style scoped>
|
|
p { color: green }
|
|
</style>
|
|
<p>Second</p>
|
|
</div>
|
|
<script>
|
|
function f() {
|
|
var p = document.getElementsByTagName("p")[1];
|
|
document.body.appendChild(p);
|
|
}
|
|
</script>
|
|
</body>
|