angular-training-slides
angular-training-slides copied to clipboard
Develop question to check that learner understands which names to use for binding to DOM events
- Angular DOM event bindings use native DOM event names without the
on
prefix. - i.e.
onclick
==(click)
Q: What would the Angular binding for onmouseenter
be?
A: (mouseenter)
10min