0
I have an html document named frame.html with the following code:
<html>
<head>
<title>frame</title>
</head>
<body>
<span id="teste">teste</span>
</body>
And another html document with the name index.html:
<html>
<head>
<title>index</title>
</head>
<body>
<iframe src="frame.html" id="frameq"></iframe>
</body>
</html>
i intend to access content from within iframe from a script in index.html as an example:
document.getElementById('teste').style.backgroundColor = "#f00";