Public
Script
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
const script = document.querySelector(`[src="https://esm.town/v/pomdtr/embed"]`);
if (!script) {
throw new Error("could not find script");
}
const wrapperID = script.getAttribute("data-element-id");
const wrapper = document.getElementById(wrapperID);
const code = wrapper.textContent;
const iframe = document.createElement("iframe", { is: "iframe" });
iframe.src = `https://easrng-playground.web.val.run?code=${encodeURIComponent(code)}`;
iframe.style.border = "none";
iframe.style.width = "500px";
iframe.style.height = "300px";
wrapper.innerHTML = "";
wrapper.appendChild(iframe);
Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
Comments
Nobody has commented on this val yet: be the first!
March 11, 2024