How can I get the linked file name of other webpage which is not in same domain using iframe in my webpage ? code is below
<iframe src='www.abcd.com/index.html'></iframe>
In index.html page it has one link like <a href="qwert.pdf"> and the .pdf file name is changing frequently so want to find out the file name of this link dynamically . I have tried using
$("#frame").contents().find("#nestedIframe").contents()
method but its denied becoz of domain issues. Is it possible to do with javaScript,html,php,ajax,xml,jquery ?