HTMLIFrameElement: srcdoc property
The srcdoc
property of the HTMLIFrameElement
specifies the content of the page.
Examples
js
const iframe = document.createElement("iframe");
iframe.srcdoc = `<!doctype html><p>Hello World!</p>`;
document.body.appendChild(iframe);