Salis Posted June 29, 2007 Share Posted June 29, 2007 Ok, I'm building an editor for my site. Nothing super great. I have an IFRAME and in the IFRAME is image list and uploader. What I need help on is sending a string from the IFRAME to the parent window. The idea is to upload files though the frame and also list them in a drop down <select> box. So if I wanted to add an image, I'd go to the IFRAME, browse for my image, click upload the choose my image from the list and click add. After I click Add I need that <a> link to be sent to the textarea on the main parent page? How would I do that? Link to comment https://forums.phpfreaks.com/topic/57755-solved-iframe-string-transfer/ Share on other sites More sharing options...
RichardRotterdam Posted June 29, 2007 Share Posted June 29, 2007 Hi this might help you the main page <script type="text/javascript"> //funtion that sets the value in the showString Div function showString(iframeVar){ document.getElementById('showString').innerHTML=iframeVar; } </script> <div id="showString"></div> <iframe src="iframe.html"></iframe> iframe page function transferString(){ var myIframeVar="this was send from the Iframe" window.parent.showString(myIframeVar); } <button onclick="transferString()"> transfer string <button> Link to comment https://forums.phpfreaks.com/topic/57755-solved-iframe-string-transfer/#findComment-286008 Share on other sites More sharing options...
Salis Posted June 29, 2007 Author Share Posted June 29, 2007 Perfect! just what I needed. Thanks Dj Kat Link to comment https://forums.phpfreaks.com/topic/57755-solved-iframe-string-transfer/#findComment-286024 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.