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 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

Has any one done this before? It would seem to me that there should
A quick glance at the present-day internet would seem to indicate that Adobe Flash
I've been test-infected for a long time now, but it would seem the majority
So, I'm working on some network programming in C, and it would seem that
I would like to do something like the following but can't seem to get
This may seem like an obvious answer, but I can't seem to find an
I realize that each browser would implement it differently, but are there any references
It would seem that the DataGridView control can only bind to data sources that
It would seem that there is a much simpler way to state the problem.
It would seem the Immediate window needs some jazzing up ala IntelliSense? Anyone agree/disagree?

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.