Feb 11, 2007 #1 gwrman IS-IT--Management Joined Dec 20, 2005 Messages 94 Location CA I have a pop-up window where user uploads a file. what is the best way to insert that value in to a textarea in the main page? The textarea has ID="tal
I have a pop-up window where user uploads a file. what is the best way to insert that value in to a textarea in the main page? The textarea has ID="tal
Feb 11, 2007 #2 dwarfthrower Programmer Joined Apr 22, 2003 Messages 1,625 Location AU Code: window.opener.document.getElementById("tal").value = document.getElementById("fileUploadControlID").value; Never be afraid to share your dreams with the world. There's nothing the world loves more than the taste of really sweet dreams. Enable Apps Upvote 0 Downvote
Code: window.opener.document.getElementById("tal").value = document.getElementById("fileUploadControlID").value; Never be afraid to share your dreams with the world. There's nothing the world loves more than the taste of really sweet dreams. Enable Apps