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

Ask A Question

Stats

  • Questions 91k
  • Answers 91k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Similiar to: How can I programmatically repair (not merely compact)… May 11, 2026 at 6:18 pm
  • Editorial Team
    Editorial Team added an answer Not sure why you want to do this instead of… May 11, 2026 at 6:18 pm
  • Editorial Team
    Editorial Team added an answer The only reason to use short variable names in JS… May 11, 2026 at 6:18 pm

Related Questions

Given a function, I'm trying to find out the names of the nested functions
I am submitted a getJSON request to a controller in my application, this controller
I have the following (fairly) simple JavaScript snippet that I have wired into Greasemonkey.
I'm trying to use jQuery and JSON with a C# Web Service that I

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.