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!!!");
});