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

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

Specifications

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

Browser compatibility

BCD tables only load in the browser

See also