ie8linter icon indicating copy to clipboard operation
ie8linter copied to clipboard

A little tool to lint websites for IE8 compatibility, with warnings for possible pitfalls

Results 11 ie8linter issues
Sort by recently updated
recently updated
newest added

You should not mention html5 shiv if it is already embedded in the page.

Media Queries are not supported in IE8 but they do _not_ "horribly mess up your page": the rules in MQ's simply do not apply… I would advise changing the wording...

Hi, You can regroupe the fixes by type, exemple : All the rgba issues, regroup in one tab "rgba not supported"...

I have a seperate stylesheet for IE8, which I load using Conditional Comments: ``` ``` IE8 Linter checks page.css instead of page-ie.css

Either as a separate project or a flag for this one, it'd be great to have an IE9 (or, better yet, IE9+) linter :)

You should not mention -webkit -moz -o prefixes since IE8 ignore these completely and does not affect the rendering of the page.

Hi, It would be cool to have this as a sublime text (2+) plugin, but without the http call. It would be a plugin that checks files on save. Thanks!

The linter rejected christine.website but allowed its alias christine.apps.xeserv.us.

I noticed was that your regular expressions are very naive: e.g. it picked up the following rule: ``` .some-rule { background: #fff url('../img/bg_creme.png') repeat-x 0 0; } ``` and —because...

I like the idea of an IE8 'linter' but your checks are _very_ coarse. They do not, for example, take into account any fallbacks in CSS etc. For example: it...