HTML Playground with Sandbox Controls
human (Nov 7, 2024, 07:11 AM)
Build an artifact that shows me a textarea and an iframe next to each other (or stacked on top on narrow screens). The textarea shows a basic HTML skeleton with a
Output will appear here
const input = document.getElementById('userInput');
const output = document.getElementById('output');
input.addEventListener('input', (e) => {
output.textContent = e.target.value;
});