spacer

Webref WebRef   Sitemap · Experts · Tools · Services · Newsletters · About i.com

home / experts / javascript / column42


The Document Object Model (DOM), Part III: HTML-DOM Mismatches

Developer News
ActiveState Debuts Open Source Business Suite
Salesforce Offers Visual App Builder
Codesion Steps Out From CVS's Shadow

In the last two columns we covered the ins and outs of the Document Object Model, supported by Internet Explorer 5.0 and up, and by Netscape's Gecko. We taught you how to analyze a document and how to synthesize its DOM. We focused in those two columns on the great advantages of the DOM and how the DOM is going to change the way we design Web sites. In those two columns we covered the basics of the DOM, i.e. what does a DOM look like and what are the properties it supports. Before we embark on the dynamics of the DOM in our next columns, we thought it will be beneficial to show you those cases where the DOM does not match the document's HTML. An HTML-DOM mismatch occurs when the tree drawing you make out of the HTML page does not match the DOM created by the browser for that page.

There are two main reasons for such mismatches. The more common cause is an illegal HTML. You can author an HTML page that includes illegal constructs without even noticing it. The browser uses its judgement on how the page should look like and creates a DOM that reflects the corrected page. We'll show you a simple document that includes an illegal HTML construct, and how Internet Explorer generates a DOM that reflects the corrected HTML content of the very same page. There is also a bug in Internet Explorer's implementation of the DOM that causes an HTML-DOM mismatch. We'll show you a minimal document example that demonstrates the bug, and we'll complement it with detailed DOM drawings of the correct and buggy cases. This column serves several purposes. First, you'll be more aware of HTML errors that create HTML-DOM mismatches. Second, you'll become more sensitive to bugs in Internet Explorer's implementation of the DOM, as we probably did not uncover all of them. Third, you'll learn to workaround the bug we did revealed. Lastly, you'll have an opportunity to synthesize the DOM of a few more document examples.

In particular, you'll learn:

More Resources from Doc JavaScript
Columns Popular Columns Tips Tools
Latest Columns
41-50 | 31-40 | 21-30
11-20 | 1-10
Working with Windows
JavaScript and Frames
Bookmarklets
Random Tips
Personalized Tips
RSS Channels
Menu Builder
Rollover Builder
Rotation Builder
Reference Tip Categories (want one?)
Links
For Your Site
Did you learn something? Do you like this site? Please link to us!

http://www.internet.com

Produced by Yehuda Shiran and Tomer Shiran


The Network for Technology Professionals

Search:

About Internet.com

Legal Notices, Licensing, Permissions, Privacy Policy.
Advertise | Newsletters | E-mail Offers

webref The latest from WebReference.com Browse >
Use Web Caching to Make Your Web Site Faster · Creating an Online Shopping Cart Mechanism in PHP · Log JavaScript Errors Using an AJAX-driven Web Service
Sitemap · Experts · Tools · Services · Email a Colleague · Contact FREE Newsletters 
 The latest from internet.com
Configuring Granular Settings for a Database Level Audit · The Perils of a Web 2.0 Transition on Your Business Processes · Facebook Redesigns Site —Again — Nears 400M Mark


Created: June 21, 1999
Revised: July 10, 1999

URL: http://www.webreference.com/js/column42/