Benjsoft
Benjsoft

Reputation: 177

window.event.srcElement is null in IE10

What is the work-around to handle window.event.srcElement in Windows 8 and IE10?

Upvotes: 2

Views: 3378

Answers (1)

Felix Kling
Felix Kling

Reputation: 816384

The official event object property to get the source element is event.target.

Since IE9, Microsoft is moving closer and closer to the official web standards.

Kind of related: How can I make event.srcElement work in Firefox and what does it mean?

Upvotes: 4

Related Questions