Skip to content

Instantly share code, notes, and snippets.

View yue1123's full-sized avatar

dh yue1123

  • 17:07 (UTC)
View GitHub Profile
@yue1123
yue1123 / isEventSupported.js
Last active April 19, 2024 15:39
Determining whether a browser supports an event
function is( obj, type ) {
return typeof obj === type;
}
var isEventSupported = (function() {
var TAGNAMES = {
'select': 'input', 'change': 'input',
'submit': 'form', 'reset': 'form',
'error': 'img', 'load': 'img', 'abort': 'img'