mattcoker
mattcoker

Reputation: 169

jQuery compatibility issues with IE8 and lower

In developing this site for a friend, I have come across serious issues rendering jQuery in IE 8 and earlier. I am still quite new to the web developer scene, and am at a complete loss as to what is occurring. 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 column switching of content was coded by hand.

Upvotes: 3

Views: 5994

Answers (2)

yckart
yckart

Reputation: 33438

jQuery 1.9+ doesn't Support jQuery.browser, however, you can bring it back with jQuery's browser implementation: https://github.com/jquery/jquery-browser migrate plugin http://github.com/jquery/jquery-migrate/

BTW: Killing default browser behaviors is never a good idea ;-) in your case the history-support.

Upvotes: 1

kidwon
kidwon

Reputation: 4524

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

jQuery 1.9 doesn't support $.browser and therefore the player ie detection might not work!!!

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

Upvotes: 2

Related Questions