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 8111377
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T02:05:31+00:00 2026-06-06T02:05:31+00:00

How to auto generate id for child div in JQuery. Please help me so

  • 0

How to auto generate id for child div in JQuery. Please help me so can i solve problem.

there is html code i want to set ids for these so can i apply operation on these.

<div id="main">

<div class="child"></div>
<div class="child"></div>
<div class="child"></div>
<div class="child"></div>
<div class="child"></div>
</div>

enter image description here

I want to fit this. when click on + it should be max on complete div and when less it should be again on same possition.

  • 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. Editorial Team
    Editorial Team
    2026-06-06T02:05:34+00:00Added an answer on June 6, 2026 at 2:05 am

    If you try to create new div and assign it to it one possible solution may be:

    <div id="parent">
    
    </div>
    
    for(var i = 0; i< 10; i++) { // suppose I append 10 divs to parent
      $('#parent')
            .append('<div id="myid_'+ i +'">child'+ i +'</div>');
    }
    

    DEMO

    But if you’ve already child divs within parent then

    <div id="parent">
      <div>child 1</div>
      <div>child 2</div>
      <div>child 3</div>
    </div>
    

    then one possible approach would be

    $('#parent div').each(function(i) {
       $(this).attr('id', 'myid_' + i);
    });
    

    According to edit

    <div id="main">
      <div class="child"></div>
      <div class="child"></div>
      <div class="child"></div>
      <div class="child"></div>
      <div class="child"></div>
    </div>
    
     $('#main .child').each(function(i) {
        $(this).attr('id', 'myid_' + i);
     });
    

    DEMO

    Another approach would be

    $('#main .child').attr('id', function(i) {
       return 'myid_' + i;
    });
    

    DEMO

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

Sidebar

Related Questions

I want to auto-generate a HTML table from some custom data. One of the
Is there a way to auto generate a Rest service in node.js like in
Given a stored procedure, is there a way to auto generate a Data access
I want to auto-generate a unique 8-10 character ID string that includes a checksum
Are there any tools that auto-generate the hibernate POJOs by gathering information from the
I often auto-generate an class's hashCode() method using IntelliJ IDEA and typically the method
I'm using Real-Time Workshop to auto-generate executables for VxWorks, but I am getting an
I'm using NB6.7 to auto generate an executable jar file for my project, how
For example, I always generate an auto-increment field for the users table, but I
Is there a way to retrieve the auto generated key from a DB query

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.