chani
chani

Reputation: 143

How to create link in HTML page that point to class in frame

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

Answers (1)

Onur Öztürk
Onur Öztürk

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

Related Questions