I want to set a value in a Textbox which is present in external url. Im currently using this snippet
function func(){
var childPage = window.open("extenal url(like www.google.com)");
var textbox = childPage.document.getElemntsByName('textboxName')[0];
textbox.value ="something";
}
But i'm getting "Access is denied" while retrieving the element ref.
Can we set any textbox of extenal url within our application by any other way. Thanks