views:

111

answers:

1

I've been updating a site and have used the fancybox plug in to display dynamic information data. Works great in every browser apart from IE, where i get 'object doesnt support this property or method' errors. I cant figure out why, it's driving me nuts. has anyone else expereinced this with IE? Any hints/tips?

I'm using this function - $(document).ready(function() { $(".clickInfo").fancybox({ 'overlayShow': true, 'autoScale': false, 'transitionIn': 'elastic', 'transitionOut': 'elastic'

})});; </script> 

called by this - " class="clickInfo">click for more info

A: 

When I've had this error in IE in the past, it's been because an ID on the page was the same as one of the function names.

bcmcfc