Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 87753
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T22:27:08+00:00 2026-05-10T22:27:08+00:00

The following source code alerts the following results: Internet Explorer 7 : 29 Firefox

  • 0

The following source code alerts the following results:

Internet Explorer 7: 29
Firefox 3.0.3: 37 (correct)
Safari 3.0.4 (523.12.9): 38
Google Chrome 0.3.154.9: 38

Please ignore the following facts:

  • Webkit (Safari/Chrome) browsers insert an extra text node at the end of the body tag
  • Internet Explorer doesn’t have new lines in their whitespace nodes, like they should.
  • Internet Explorer has no beginning whitespace node (there is obvious whitespace before the <form> tag, but no text node to match)

Of the tags in the test page, the following tags have no whitespace text nodes inserted in the DOM after them: form, input[@radio], div, span, table, ul, a.

My question is: What is it about these nodes that makes them the exception in Internet Explorer? Why is whitespace not inserted after these nodes, and is inserted in the others?

This behavior is the same if you switch the tag order, switch the doctype to XHTML (while still maintaining standards mode).

Here’s a link that gives a little background information, but no ideal solution. There might not be a solution to this problem, I’m just curious about the behavior.

Thanks Internet, Zach

<!DOCTYPE html PUBLIC '-//W3C//DTD HTML 4.01//EN' 'http://www.w3.org/TR/html4/strict.dtd'> <html>     <head>         <meta http-equiv='Content-Type' content='text/html; charset=UTF-8'>         <script type='text/javascript'>         function countNodes()         {             alert(document.getElementsByTagName('body')[0].childNodes.length);         }         </script>     </head>     <body onload='countNodes()'>         <form></form>         <input type='submit'/>         <input type='reset'/>         <input type='button'/>         <input type='text'/>         <input type='password'/>         <input type='file'/>         <input type='hidden'/>         <input type='checkbox'/>         <input type='radio'/>         <button></button>         <select></select>         <textarea></textarea>         <div></div>         <span></span>         <table></table>         <ul></ul>         <a></a>     </body> </html> 
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-10T22:27:09+00:00Added an answer on May 10, 2026 at 10:27 pm

    IE tries to be helpful and hides text nodes that contain only whitespace.

    In the following:

    <p> <input> </p> 

    W3C DOM spec says that <p> has 3 child nodes (‘\n’, <input> and ‘\n’), IE will pretend there’s only one.

    The solution is to skip text nodes in all browsers:

    var node = element.firstChild; while(node && node.nodeType == 3) node = node.nextSibling; 

    Popular JS frameworks have functions for such things.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I get the following compilation error with the following source code: Compilation Error: Type
Frequently I come across the following statements in C/C++ source code: $Id: lzio.c,v 1.24
In the following one to many CREATE TABLE source(id int, name varchar(10), PRIMARY KEY(id));
Given a pretty basic source tree structure like the following: trunk ------- QA |--------
How would one programatically reproduce the following effect? (source: artext.co.uk ) I'd like to
I'm looking for a framework to generate Java source files. Something like the following
My ajax (jquery) response (html) gives me a whole junk of html source code
Suppose I had the following function: function alertMesg() { alert(This ok function alerts message!);
Following on from my recent question on Large, Complex Objects as a Web Service
Following my question regarding a .NET YAML Library ... as there doesn't seem to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.