Question

I've checked all the other ie9 related threads and can't seem to solve my issue. In IE9 none of my hotspots are hovering. It works in all other browsers.

I'm in IE9 Standards mode. I'm rocking a doctype HTML5. Nothing in the code jumps out at me.

Any suggestions?

LINK REMOVED

Thanks,

Was it helpful?

Solution

Code in main.js is throwing an exception in Internet Explorer. The mapster config never gets run when this fails.

$(document).ready(function() {

Site.init();

if (($.browser.msie) && ($.browser.version <= "9.0")) {

        $('input[placeholder], textarea[placeholder]').placeholder();

SCRIPT438: Object doesn't support property or method 'placeholder'

Generally speaking, to troubleshoot in IE, just hit F12 and click "Start Debugging." It will be immediately apparent if a script is failing.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top