jQuery and iFrames
A short demonstration of how to access the document of an iFrame and modify it.
by Derija93
HTML
<iframe id="test"></iframe>
JavaScript
$(function() {
$('#test').contents().find('body').append("I'm alive!!!");
});
by Derija93
<iframe id="test"></iframe>
$(function() {
$('#test').contents().find('body').append("I'm alive!!!");
});