SecurityPolicyViolationEvent: columnNumber property

The columnNumber read-only property of the SecurityPolicyViolationEvent interface is the column number in the document or worker at which the violation occurred.

Value

A number representing the column number where the violation occurred.

Examples

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

Specifications

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

Browser compatibility

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

See also