HTML5 Application Development Fundamentals — Question 8
Which three events are valid for the HTML CANVAS element? (Choose three.)
Answer options
- A. scroll
- B. mouseup
- C. blur
- D. datareceived
- E. hover
Correct answer: A, B, E
Explanation
The correct answers are A, B, and E because 'scroll', 'mouseup', and 'hover' are events that can be triggered on the CANVAS element. Options C and D are not valid events for the CANVAS element; 'blur' is associated with focusable elements, and 'datareceived' is not a standard event in this context.