I want to refer iframe which is inside another iframe
<
Use contents() to get inside first frame window once it has loaded:
$('iframe').on('load', function(){ var $secondFrame = $(this).contents().find('iframe'); $secondFrame.attr('src', someUrl) })