How do I add a <div> tag before <iframe> loads, using javascript? For example:
<div><iframe>Text</iframe></div>
If you're using jQuery, and the following is your HTML...
<main id="content"><iframe>Text</iframe></main>
... then you could use ...
$('iframe').wrap( "<div></div>");
... or ...
$( "iframe" ).wrapAll( "<div></div>");
... or ...
$('#content').wrapInner( "<div></div>");
... to turn it into ...
<main id="content"><div><iframe>Text</iframe></div></main>
Each of these three statements do pretty much the same thing in this specific context.