I am facing a bit problem. I want to create an iframe inside the div tag which will be inside my body tag. I tried the following jQuery code:
$(document.createElement('<div id="modalDiv"><iframe id="modalIFrame" width="100%" height="100%" marginWidth="0" marginHeight="0" frameBorder="0" scrolling="auto" title="Dialog Title"></iframe></div>'));
But i didn’t get any result. Also, i placed the script in the body tag but didn’t get any result.
Thanks in advance.
Assuming you have jQuery added:
This will add your code to the end of the body html…