Friday, October 13, 2006

Browser DOM Supports and Compatibility Issues

I occasionally get some earful from other people how hard to develop an AJAX application. Well, it isn't that hard if you use on-ready AJAX development tools such as Atlas. Nevertheless, you may be cracking your head on writing remote scripting from ground up because there are few issues need to be taken care.

Other than the checking the types of the browser, you also need to concern about the DOM supports the particular browser can support. For instance, the innerText property of < span > is not supported in FireFox, you have to use textContent property or universal supported innerHTML property. Here are the listing of sites that you may need to check the DOM that the layout engines in each browser can support.


Links
1. Web browser HTML support
http://www.webdevout.net/browser_support_html.php

2. Web browser DOM support
http://www.webdevout.net/browser_support_dom.php

3. DOM Support in Mozilla
http://www.mozilla.org/docs/dom/mozilla/

4. Comparison of layout engines (DOM)
http://en.wikipedia.org/wiki/Comparison_of_layout_engines_%28DOM%29

5. Common Differences Among IE and Mozilla
http://www.htmlgoodies.com/primers/jsp/article.php/3624446

No comments: