Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<html>
<link rel="match" href="placeholder-update-ref.html">
<body>
<div id="app"></div>
<script>
const rootElement = document.getElementById("app");
const input = document.createElement("input");
input.placeholder = "placeholder";
input.value = "content";
rootElement.appendChild(input);
</script>
</body>
</html>