[ Web Proxy ]
URL:
Viewing: https://developer.mozilla.org/es/docs/Web/JavaScript/Reference/Errors/Property_access_denied [Back]  [Original]

Error: Permission denied to access property "x" - JavaScript | MDN

Esta pgina ha sido traducida del ingls por la comunidad. Aprende ms y nete a la comunidad de MDN Web Docs.

View in English Always switch to English

Error: Permission denied to access property "x"

Mensaje

Error: Permission denied to access property "x"

In this article

Tipo de error

Error.

Cul es el problema?

Se ha intentado acceder a un objeto al cual no tienes permiso. Probablemente es un elemento <iframe> cargado de otro dominio en el cual violaste la poltica del mismo origen.

Ejemplos

html
<!doctype html>
<html>
  <head>
    <iframe
      id="myframe"
      src="http://www1.w3c-test.org/common/blank.html"></iframe>
    <script>
      onload = function () {
        console.log(frames[0].document);
        // Error: Permission denied to access property "document"
      };
    </script>
  </head>
  <body></body>
</html>

Vase tambin


Web Proxy Viewer  |  New URL  |  Original Page