SecurityPolicyViolationEvent: blockedURI property

The blockedURI read-only property of the SecurityPolicyViolationEvent interface is a string representing the URI of the resource that was blocked because it violates a policy.

Value

A string representing the URI of the blocked resource.

Examples

js
document.addEventListener("securitypolicyviolation", (e) => {
  console.log(e.blockedURI);
});

Specifications

Specification
Content Security Policy Level 3
# dom-securitypolicyviolationevent-blockeduri

Browser compatibility

desktopmobile
Chrome
Edge
Firefox
Opera
Safari
Chrome Android
Firefox for Android
Opera Android
Safari on iOS
Samsung Internet
WebView Android
blockedURI

See also