Reputation: 143
I have an html page and in it I have a frame (or iframe in HTML5). Is there a way to create a link that point to specific class / ID / link that in the frame?
Upvotes: 1
Views: 94
Reputation: 139
if you do not use cross domains you can reach your iframe with javascript with below code
frame=document.getElementById('myframe').contentWindow.document;
link=frame.getElementById('mylink').href;
Upvotes: 1