iframe src load
HTML
<div style="width:100%;height:1000px;" id="frameHolder"></div>
JavaScript
var url = 'http://www.microsoft.com';
var frame = $('<iframe />', {
id: 'innerFrame',
src: url,
width: '100%',
height: '1000',
style: 'width:100%;height:100%',
frameborder: '0'
}).appendTo('#frameHolder');
frame.attr('src',"https://www.boston.com");