var iFrame = document.createElement('IFRAME'); iFrame.src = 'http://www.google.co.in'; document.body.appendChild(iFrame);
var iFrame = document.createElement('IFRAME'); iFrame.name = 'frame'; //iFrame.src = 'http://www.google.co.in'; document.body.appendChild(iFrame); frames['frame'].location.href = 'http://www.google.co.in';
Comment