Catfish
Catfish

Reputation: 19294

Fancybox not displaying correctly in IE8

I have a site http://skidox.com and there is a little calendar on the left hand side. If you click one of the green boxes, the data shows in a fancybox correctly in all browsers except IE8.

I can't seem to figure out what why this is happening. Any help is appreciated.

Upvotes: 1

Views: 1175

Answers (3)

Loša
Loša

Reputation: 2621

There is an extra </div> at the end of your Ajax response. Try to remove it. IE8 is pretty sensitive for syntax errors.

Upvotes: 1

Kiran Ruth R
Kiran Ruth R

Reputation: 1012

I once faced the same issue with fancybox and ie8 :

Try replacing

$(document).ready(function() {

with

jQuery(function( $ ){

Hope that helps.

Upvotes: 0

manuthalasseril
manuthalasseril

Reputation: 1064

When i changed the documentmode from ie 8 standards to standards on inspect element in ie, it works fine . that means document type issue. May be this will help you. Can you try this link

Also I have seen in your site on ie 8 mode that, the doctype is not declared.

Upvotes: 0

Related Questions