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

  • SEARCH
  • Home
  • 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 106553
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T01:36:54+00:00 2026-05-11T01:36:54+00:00

It would seem natural to me that HTML would support this: <div id=comment1> <div

  • 0

It would seem natural to me that HTML would support this:

<div id='comment1'>     <div id='helpText'>...</div> </div>  <div id='comment2'>     <div id='helpText'>...</div> </div>  <div id='comment3'>     <div id='helpText'>...</div> </div>  #comment1#helpText #comment2#helpText #comment3#helpText 

But since HTML ids must be unique, I need to do this:

<div id='comment1'>     <div id='helpText1'>...</div> </div>  <div id='comment2'>     <div id='helpText2'>...</div> </div>  <div id='comment3'>     <div id='helpText3'>...</div> </div>  #comment1#helpText1 #comment2#helpText2 #comment3#helpText3 

This seems to be unnecessarily redundant, especially when I have multiple nested DIVs:

<div id='comment1'>     <div id='header1'>...</div>     <div id='introduction1'>...</div>     <div id='helpText1'>...</div>     <div id='footer1'>...</div> </div>  <div id='comment2'>     <div id='header2'>...</div>     <div id='introduction2'>...</div>     <div id='helpText2'>...</div>     <div id='footer2'>...</div> </div>  <div id='comment3'>     <div id='header3'>...</div>     <div id='introduction3'>...</div>     <div id='helpText3'>...</div>     <div id='footer3'>...</div> </div> 

Can anyone give me some background as to why this is the case and perhaps some workarounds for getting HTML ids to work more along the lines of a namespace metaphor?

  • 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-11T01:36:54+00:00Added an answer on May 11, 2026 at 1:36 am

    Use class.

    An id identifies that element and that element alone. It’s like a pointer to an object in C++. Elements without an id are like objects without named (?) pointers to them.

    Classes are like attributes. Elements may have zero or more of any combination of classes. They give you what you want.

    /* CSS */ #comment1 .header #comment3 .helpText  <!-- (X)HTML --> <div id='comment1'>     <div class='header'>...</div>     <div class='introduction'>...</div>     <div class='helpText'>...</div>     <div class='footer'>...</div> </div> 

    DOM by itself does not have nice selectors for Javascript (and other scripting languages), but toolkits like JQuery allow you to select elements by class name nicely.

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

Sidebar

Related Questions

It would seem that this would be a simple thing to do, but I
Maybe I am not from this planet, but it would seem to me that
This may seem to be an academic question, but still I would be very
This would seem to be very simple, but it's not working for me. I
I have a small problem that would seem to be easy to solve, but
This would seem to be super simple but I cannot get it to work
After reading this tidbit , it would seem that the current user's permission would
It would seem that IE7 puts an extra 1px of spacing above and beneath
This would seem to be the case in Firefox 3.5+, there I can instantiate
I can't seem to find anything that would let me to easily show a

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.