Hello all, I've run into a snag with a project in which we are moving content from a popup window to an iframe. The content is on a remote host, so linking to it in a popup worked just fine. However, the change requires putting the iframe on a separate document, and linking from one document to the iframe on another. To put in simpler terms: Link 1 (document3.html) on Document 1 targets an iframe on Document 2.
I understand that this could be accomplished by passing a variable in the URL of the link (document2.html?iframeurl=document3.html) and parsing the variable as the src of the iframe using jquery. Is this correct? Thanks in advace for all your help! Sean