Response title
This is preview!
Hi, I installed IE9 and the jquery.media plugin from http://jquery.malsup.com/media/# stopped working on all my pages
the error is
SCRIPT5022: DOM Exception: INVALID_CHARACTER_ERR (5)
in line 382
var o = document.createElement(a.join(''));
any ideas?
best regards
Bernd
Hi replaced the lines
else if ($.browser.msie)){
with:
else if (($.browser.msie) && ($.browser.version < 9)){
and
($.browser.msie || player == 'iframe') ? $div.append(o) : $div.html(a.join(''));
with
(($.browser.msie && $.browser.version < 9 )|| player == 'iframe') ? $div.append(o) : $div.html(a.join(''));
seems to work fine
best regards
Bernd
© 2013 jQuery Foundation
Sponsored by and others.