Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Is their any alternative to HTML5 iframe srcdoc?
The srcdoc attribute specifies the HTML content of the page to show in the iframe. The HTML <iframe> tag is used to create an inline frame.
Alternative of the srcdoc attribute will be:
var doc = document.querySelector('#demo').contentWindow.document;
var content = '<html></html>';
doc.open('text/html', 'replace');
doc.write(content);
doc.close();Advertisements