-2

I have a textarea input, When I put iframe inside it i get the same thing

example: I put this code

<iframe width="640" height="360" src="https://www.youtube.com/embed/-0uBK0T298k" frameborder="0" allowfullscreen></iframe>

I get the same thing in my page

enter image description here

Any solution?

Marcin Orlowski
  • 72,056
  • 11
  • 123
  • 141
Aymen bz
  • 368
  • 1
  • 5
  • 10

1 Answers1

1

You cannot render HTML inside a textarea tag. You could use a content editable div.

See this answer for more information on the subject: https://stackoverflow.com/a/4705882/5514456