views:

65

answers:

3

Is there a list of differences between how FF and IE treat javascript?

for example, I remember array references was a little different between the two.

+1  A: 

Why yes I asked this question recently:

http://stackoverflow.com/questions/703993/javascript-incompatibilities-inconsistencies

Note, that there was a clear consensus that MOST (but not all) of the significant differences were DOM related, not syntax related.

altCognito
A: 

IBM wrote a very good paper on differences throughout the browsers including javascript at http://www.ibm.com/developerworks/web/library/wa-ie2mozgd/ Most differences are in the DOM and not necessarily in javascript.

gbrandt
A: 

Here's a decent list.

Darryl E. Clarke