Is it reasonably fine to bind an event handler to an element both on the 'input' and 'propertychange' events to target support for IE8 and other browsers?
$('.element').on('input propertychange', function(){...});
Or are there pitfalls to doing this?
Edit
Is there a jQuery plugin I can use to support old version of IE?