Using <meta http-equiv="X-UA-Compatible" content="IE=9">
, IE9+ does support addEventListener
by removing the "on" in the event name, like this:
var btn1 = document.getElementById('btn1');
btn1.addEventListener('mousedown', function() {
console.log('mousedown');
});