I have a webpage, we will call it web1. This webpage has a div that contains an external webpage that will be web2. web2 is stored at our server so we have full control of it, so is web1.
The code at web1 to create the div that will contain web2 is as follow:
<div class="form-group">
<label class='control-label col-sm-1'>Design Report Searcher</label>
<div class="col-sm-11">
<div id="load-external"></div>
</div>
</div>
</div>
And the jquery function to load the web2
$("#load-external").html('<object style="height:320px; width:100%;" data="https://external.my.company.com/" />');
Web2 contains a list of documents stored at a server.
The user will navigate in web2 and once he founds the document he wants, web1 will need the url to parse it.
Is it possible at all to get that url using jquery?