How to insert HTML content into an iFrame using jQuery
contents()
You can use the jQuery contents() method in combination with the find(), val() and html() methods to insert text or HTML inside an iframe body.
find()
val()
html()
Let's try out the following example to understand how it basically works:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>jQuery Insert HTML inside an iFrame</title> <script src="https://code.jquery.com/jquery-3.5.1.min.js"></script> <style> textarea, iframe{ display: block; margin: 10px 0; } </style> <script> function updateIframe(){ var myFrame = $("#myframe").contents().find('body'); var textareaValue = $("textarea").val(); myFrame.html(textareaValue); } </script> </head> <body> <textarea rows="5" cols="50" placeholder="Type HTML or text here..."></textarea> <button type="button" onclick="updateIframe()">Insert Content</button> <iframe id="myframe"></iframe> </body> </html>
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Use the jQuery
contents()
methodYou can use the jQuery
contents()
method in combination with thefind()
,val()
andhtml()
methods to insert text or HTML inside an iframe body.Let's try out the following example to understand how it basically works:
need an explanation for this answer? contact us directly to get an explanation for this answer