@ngdoc error @name $compile:nodomevents @fullName Event Attribute/Property Binding @description This error occurs when one tries to create a binding for event handler attributes or properties like `onclick`, `onload`, `onsubmit`, etc. There is no practical value in binding to these attributes/properties and doing so only exposes your application to security vulnerabilities like XSS. For these reasons binding to event handler attributes and properties (`formaction` and all starting with `on`) is not supported. An example code that would allow XSS vulnerability by evaluating user input in the window context could look like this: ```