How to reference web controls in iframe?

admin

Administrator
Staff member
want to reference web controls in iframe. how to do that?


the following does't work, how to revise?

<html>

<head>
function automatic( )
{
alert(document.getElementById("ID_of_iframe").document.getElementById("ID_of_Font_in_another.html").size);
}
</head>

<body >
<iframe id="ID_of_iframe" src=http://www.webdeveloper.com/forum/archive/index.php/"another.html" ></iframe>
</body>
</html>:confused:
 
Back
Top