Well, I built a local html page wich loads a popup containing a online hosted web page. This popup contains frames and a form field I want to fill out via JS.
The idea goes like that:
File:///c:\auto-fill.html
- loads an external page in pop up:
-- http://www.whatever.com/form-with-frames.html
--- how to fill this form from the autofill.html JS code.
I tried:
my_popup.document.frame2.form1.filedX.value='anything';
but won't work.
I googled all over for a solution but found nothing.
No way with javascript only, because the pages belong to different domains. There might be a combined solution AJAX+server-side application, but that means you need to install and run a server on your machine
Bookmarks