The list of things that are different in IE.

H

HopfZ

I was debugging a javascript file that did not work in IE. It took
several hours only to learn that s = 'ABC'; c = s; is not
IE-compatible. If I knew this before, It could have saved hours. I find
myself in this kind of situation several times.

Is there some well written list of things (in javascript) that does not
work as expected in IE?
 
E

Erwin Moller

HopfZ said:
I was debugging a javascript file that did not work in IE. It took
several hours only to learn that s = 'ABC'; c = s; is not
IE-compatible. If I knew this before, It could have saved hours. I find
myself in this kind of situation several times.

Is there some well written list of things (in javascript) that does not
work as expected in IE?


Hi,

Irritating, isn't it?
The most comprehensive approach I know of is a book:
Javascript, the definitive guide (5th edition now I think) by Flanagan,
published by O'Reilly.

It contains, amongst others:
- basic guidelines to code in a general way.
- lists for all functions/methods if they are supported by which browsers.

It has good CSS coverage too.

For almost any problem you can write a JS routine that will only use the
'common API' so you code works on IE/FF/Opera/etc. with no/minimal
branching in your code.

Regards,
Erwin Moller
 
R

Randy Webb

HopfZ said the following on 12/18/2006 12:34 PM:
I was debugging a javascript file that did not work in IE. It took
several hours only to learn that s = 'ABC'; c = s; is not
IE-compatible. If I knew this before, It could have saved hours. I find
myself in this kind of situation several times.

Is there some well written list of things (in javascript) that does not
work as expected in IE?


And what about things that don't "work as expected" in non-IE browsers?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,444
Messages
2,571,709
Members
48,796
Latest member
Greg L.
Top