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

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 You can use two functions that will help you out:… May 11, 2026 at 6:16 pm
  • Editorial Team
    Editorial Team added an answer As it turns out, our hardware is reaching its limit.… May 11, 2026 at 6:16 pm
  • Editorial Team
    Editorial Team added an answer If you have mod_mime installed, then you can do: AddType… May 11, 2026 at 6:16 pm

Related Questions

(EDIT: This question is now outdated for my particular issue, as Google Code supports
Out curiosity I was wondering if there was a logical reason to have the
Say that I have two models- Users and Accounts. Each account can have at
This is one of those little detail (and possibly religious) questions. Let's assume we're

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.