cross browser - Feature-detect: mutation-event availability in JavaScript? - Stack Overflow

How can my JavaScript detect if an event is available?I'm aware of some great event-patibility t

How can my JavaScript detect if an event is available?

I'm aware of some great event-patibility tables, but I need to use feature detection, not browser-sniffing plus a lookup table.

Specifically, my JS makes great use of the DOM mutation events (DOMNodeInserted and DOMSubtreeModified) -- which work great in all browsers except (of course) Internet Explorer.

So, how would I detect if a browser supports DOMNodeInserted?

How can my JavaScript detect if an event is available?

I'm aware of some great event-patibility tables, but I need to use feature detection, not browser-sniffing plus a lookup table.

Specifically, my JS makes great use of the DOM mutation events (DOMNodeInserted and DOMSubtreeModified) -- which work great in all browsers except (of course) Internet Explorer.

So, how would I detect if a browser supports DOMNodeInserted?

Share edited Sep 22, 2019 at 16:32 Brian Tompsett - 汤莱恩 5,89372 gold badges61 silver badges133 bronze badges asked Feb 3, 2011 at 2:56 Brock AdamsBrock Adams 93.7k23 gold badges241 silver badges305 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 8

If you just want to check if the browser supports mutation events in general, you can use this simple test:

var hasMutationEvents = ("MutationEvent" in window);

Here are the results from a bunch of popular browsers: http://www.browserscope/browse?category=usertest_agt1YS1wcm9maWxlcnINCxIEVGVzdBjEkNAPDA

To run the browserscope test in another browser go here: http://jsbin./aqeton/4/

This question is quite old, but in case anyone else stumbles upon it, a solution for detecting mutation events is explained in this answer: How to check browser support for capabilities / events?

From that answer:

You can't detect mutation events, and modernizr doesn't work for this...

The only way to "detect" support for mutation events is to try and trigger the event.

For normal events, use the perfectionkills article in takteek's answer. This still doesn't seem to support sniffing of some new HTML5 events, like "input".

I looked around on google a bit. This looks like it's probably what you want:

http://perfectionkills./detecting-event-support-without-browser-sniffing/

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743667868a4487281.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信