Posts about Ie

JSON with Special Characters fails in IE

If you try to eval a JSON string that has special characters in it(non-ascii, or chr > 127), it will error out. The other browsers work fine. more
Posted by Toby on May 27, 09
About programming, javascript, crossbrowser, ie and json

Trying to Index Strings in IE

'abc'[0]
gets you undefined in IE. The correct way is to do 'abc'.charAt(0).
more
Posted by Toby on May 26, 09
About programming, javascript, crossbrowser and ie

IE Woes: One

Man! Have I been at war with IE lately. I have been holding back a lot of blog posts related to debug IE problems, and I going to start spewing them out now one by one. For the first installment I'll... more
Posted by Toby on Dec 09, 08
About programming, javascript, crossbrowser and ie

IE getElementById looks up "name"

Posted by Toby on Dec 09, 08
About programming, javascript, crossbrowser and ie

IE bug: input endtags show up as nodes

If you write an input element like this:<input type="text" id="name" name="name" value="></input>In IE, if you try to traverse the dom, you will get the end-tag as a separate element... more
Posted by Toby on Nov 10, 08
About programming, javascript, crossbrowser, ie and html
1 comments

Microsoft Script Debugger

I've finally gotten the hang of the Microsoft Script Debugger. I can now debug Ajax code in IE with relative ease. Before this, the error line number IE gives is always wrong, so there's no good way... more
Posted by Toby on Jun 03, 08
About javascript and ie