Tagged Questions

5
votes
2answers
2k views

/*@cc_on and IE6 detection

When researching JavaScript conditional comments for IE, I stumbled upon @cc_on. This seems to work. However, the wikipedia entry on conditional comments provides the following code for more robust ...
2
votes
4answers
332 views

How not to load a script in IE?

It's possible to load a script only in IE with conditional comments <!--[if lte IE 7]> <script type="text/javascript" src="somescript.js"></script> <![endif]--> but what ...
1
vote
1answer
24 views

What would make Internet Explorer NOT process conditional comments properly?

I'm writing JSP pages and using Tomcat, and it needs to work for IE 7 in addition to Firefox and Chrome (client needs). In my program, I include both pieces of code. It works properly for non-IE ...
1
vote
4answers
212 views

Is there a way to introduce Internet Explorer conditional comments using JavaScript?

I have a segment of HTML code which includes a conditional comment: <!--[if IE]> <link rel="stylesheet" ...> <[endif]--> This code was tested and works correctly when included in ...
1
vote
7answers
2k views

Javascript IE detection, why not use simple conditional comments?

In order to detect IE most Javascript libaries do all sort of tricks. jQuery seem to add a temporary object into your pages's DOM to detect some features, YUI2 does regex on the user agent in its ...
1
vote
1answer
586 views

if IE conditional comments not working

It seems like a silly question, but I'm stumped. I'm using an if IE conditional statement to fix some issues in IE6. In the head, I have <!--[if lt IE 7] > <script type="text/javascript" ...
1
vote
4answers
285 views

Including style sheets for different browsers without JavaScript

I have a utility that scans through my css file and embeds images as base64 to reduce the amount of requests made to the server. Unfortunatly, IE does not support this. I know how to include IE ...
1
vote
4answers
513 views

Using IE conditional comments to include CSS or JavaScript files results in more http requests

A web designer has created pages for us with IE-specific comments. Consequently, certain stylesheets are only included if the user is using a specific version of IE: <!--[if lt IE 7]> <link ...
0
votes
1answer
45 views

How to load different scripts for different versions of IE?

I use these scripts to repair the errors in IE (Hacks). There is one for each version. I know that everything has IE9.js IE8 and 7 but would like to load only the necessary script to that ...
0
votes
1answer
20 views

How to serve a JS file to every browser but IE

I dont know why this isn't working. I'm trying to serve a file to good browsers, namely everyone but IE. <!--[if !IE]> <script type="text/javascript" src="JS/script.js"></script> ...
0
votes
3answers
67 views

IE Fixes - Conditional Comment Script will not execute

I'm trying to build a website. I have it displaying correctly in every browser except IE versions 8 and lower. IE renders blue boxes around my img's that are also anchors. I can get rid of this by ...
0
votes
2answers
48 views

Do conditional comments only work for stylesheets?

Do conditional comments only work for CSS styles and stylesheet links, or can they be applied to all HTML/JS. I'm asking because I'd like to display a specific message if the user is using a browser ...
0
votes
4answers
214 views

How to link a conditional style sheet without access to the head

I am working in an enterprise CMS (Autonomy/Interwoven Teamsite) that does not give me direct access to the head of a page. I can only link style sheets and add external js files. Normally I would ...