Hola a todos, resumo rapido mi problema.
Firefox me tira el siguiente error con este script:
Código:
Permission denied to access property 'document'
Solo encontre soluciones puntuales y no con una explicacion, asi que queria pedirles si me podrian explicar porque se deve y como se soluciona.
El codigo:
Código Javascript
:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Voting...</title>
</head>
<body>
<a href="#" onclick="change();">Cambiar</a>
<div id="ifr">Por favor instala o hablinita javascript</div>
<script type="text/javascript" />
var site = "http://www.xtremetop100.com/in.php?site=1132315174";
document.getElementById("ifr").innerHTML = '<iframe name="frame" id="frame" src="' + site + '" width="' + screen.width + '" height="' + screen.height + '" frameborder="0"></iframe>';
function change(){
window.frames[0].self.document.getElementById("middlec").innerHTML = "ASPER";
}
</script>
</body>
</html>
Desde ya muchas gracias.