Start a new discussion

To start a new discussion please visit the discussions section of the GitHub home page of the project.

Discussions on GitHub

You can also search our old self-hosted forums for any useful information below but please note that posting new content here is not possible any more.

Re: Problems with IE8

Home Forums Older releases 0.9.x Problems with IE8 Re: Problems with IE8

#1469
admin
Keymaster

Hi,

The problem seems to be that your page does not have any doctype set and IE renders it in quirks mode. And in order to work correctly the script requires a proper doctype that will force standards-compliant rendering mode. So to fix the issue just add the HTML5 doctype at the beginning of your pages – e.g.:

<!DOCTYPE html>
<html>
...

Cheers!