Trying to embed an iframe inside a text component.
Noticed a few issues when editing the 'source' code in the text components.
- The iframe ID is being stripped out of the source code after saving the component changes.
<iframe src="http://google.com" id="myiframe" width="700" height="1000"></iframe> -- becomes -- <iframe src="http://google.com" width="700" height="1000"></iframe> - The same happens when we try to embed JavaScript inside <script> </script> tags above the iframe source code.
Is there any way around this issue?
Any help would be extremely helpful and highly appreciated!