// Remove all CSS I don't want to use on IE $('link[rel=stylesheet]').each(function(i) { if (this.getAttribute('href') == '/css/layout.css') this.disabled = true; if (this.getAttribute('href') == '/css/shadows.css') this.disabled = true; if (this.getAttribute('href') == '/css/gen.css') this.disabled = true; }) ; // Append the CSS for IE only $('head').append(''); // I also add a message on top of the page $('body').prepend('

Avec Firefox et Safari cette page est bien plus jolie !This page is far nicer with Firefox and Safari!

.
');