I have the following structure:
I need to change value of "test-input" from within that iframe. Typically I'd useCode:<html><body> ...stuff .. <input id="test-input" type="text" /> <iframe id="test-frame" src="whatever.php" /> .. more stuff .. </body></html>but the problem is, iframe and document are on different domains, so I can't access parent.documentCode:parent.document.getElementById('test-input').value = 'whatever';
Is there some workaround for it? I have full access to both top and iframe document, so can add any javascript to both.



Reply With Quote




Bookmarks