djd0
djd0

Reputation: 947

How can I monitor browser events in Internet Explorer?

I need to debug some differences in behaviour between browsers of (blur and focus) events in a web application I am working on.

In Chrome, I have been using the monitorEvents function. Is there a way to achieve similar functionality (logging events to the console) in IE (11)?

Upvotes: 4

Views: 2117

Answers (1)

jcmikkelsen
jcmikkelsen

Reputation: 116

The following post has a link to a code snippet which mimics functionality similar to the monitorEevents function in Chrome:

https://coderwall.com/p/kc5pew/monitor-events-in-ie9-s-console

This was originally written for IE9, but I have used it with IE11 as well.

Upvotes: 3

Related Questions