ClaytonTDM
ClaytonTDM

Reputation: 96

iFrame not showing inline HTML content

I have an iFrame on my site, and instead of using an src attribute, I want to show inline HTML within the iFrame. Is there any way I can do this? Example:

<iframe><p>Hello World</p></iframe>

Should show text saying "Hello World" within an iFrame, but shows this instead:

<iframe><p>Hello World</p></iframe>

Upvotes: 1

Views: 205

Answers (1)

zer00ne
zer00ne

Reputation: 43880

Use the srcdoc attribute.

<iframe srcdoc='<img src="https://i.ibb.co/7XxsBr5/lena02.png" alt="lena02" border="0" width="100">' height='150' width='150'></iframe>

Upvotes: 1

Related Questions