While testing cross browser compatibility, came across the next error in IE8:
Message: Object doesn't support this property or method
Line: 69
Char: 339
Code: 0
URI:
http://xxx.xxx.xxx.xxx/javascripts/agility.min.jsError happens on the next line:
$.each(events,function(i,ev){ev=ev.trim();bindEvent(ev,handler);});
Looks like the ev.trim() causes the error.
I tried a fix according to
http://api.jquery.com/jQuery.trim/ which seems to work
ev=$.trim(ev).
Anyone else seen this problem?