This is my code that works in IE: window.opener.quoteinfo.drawingname.value = document.fileload.drawingfile.value; Code (markup): But Mozilla does not like "window.opener" Any suggestions?
window.opener does work in Firefox. Check the error console and see what error you get. (Tools -> Error console)
The console is how I found that this was the error. It turns out that I needed to add .document after .opener and then reference the form and the field. All is good now. Thanks