var $iframe = $('#some_iframe'); // iframe内のコンテンツのdocumentオブジェクト var ifrmDoc = $iframe[0].contentWindow.document; // あとはいつも通りでおk var $body = $('body', ifrmDoc); var $ele = $('#some_element', ifrmDoc); $(function() { $('#some_iframe').on('load', function(e) { var $body = $('body', this.contentWindow.document); : : }); }); Register as a new user and use Qiita more conveniently You get articles that