JQuery compatibility issues with IE8 and below

While developing this site for a friend, I ran into major jQuery related issues in IE 8 and earlier. I am still completely new to the web developer scene and I will completely lose what is going on. a copy of the site can be found at cat5andmouse.com/phillipeldermusic

The audio player is a modified version of something freely available and the manual column switching has been coded.

+3


source to share


2 answers


You have js error $.browser.msie' is null or not an object

jQuery 1.9 does not support $.browser

and therefore the player i.e. detection may not work !!!



Try an older version of jQuery like 1.7 and below and see what happens

+2


source


jQuery 1.9+ does not support jQuery.browser however you can return it using jQuery implementation browser: https://github.com/jquery/jquery-browsermigrate plugin http://github.com/jquery/jquery-migrate/



BTW: Killing the default browser behavior is never a good idea ;-) in your case, maintaining history.

+1


source







All Articles