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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T18:29:02+00:00 2026-06-11T18:29:02+00:00

If I have a <div> that has variable elements in it, each with a

  • 0

If I have a <div> that has variable elements in it, each with a different id, which is one number — so for instance, three images with the ids 1, 2 and 3 — how do I write a function to get those ids and then export them all together as an integer instead of a string?

At the moment I have a function that grabs the ids and exports them, but there’s a problem. Say I put three images with ids 1, 2 and 3 into the <div>. When it exports the ids and goes to the database, I don’t get 123’s entry; I get 1, 2, or 3. I imagine it’s because the function is exporting it as 1,2,3 instead of 123. Can anyone help?

My code (where #div is the parent <div> and children are the elements with the ids I want to gather):

$("#submit").click(function () {
    $("#div").children().each(function(n, i) {
        var boxid = this.id;
        // Do something with the ids
    });
});
  • 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-11T18:29:03+00:00Added an answer on June 11, 2026 at 6:29 pm

    If you want to get the result as 123 integer, you can use map method and then join the result.

    $("#submit").click(function () {
        var boxid = $("#div").children().map(function() {
              return this.id;
        }).get().join('') 
    
        boxid = Number(boxid)
    });
    

    http://jsfiddle.net/rEfXb/

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

Sidebar

Related Questions

I have a variable that has this string: <DIV><SPAN style=FONT-FAMILY: Tahoma; FONT-SIZE: 10pt>[If the
I have a div that has a one pixel solid white border on the
I have a site that has 2 DIV tags, one floats left the other
I have a page that has 50 elements with the same class fields which
Good Afternoon, I have a html aspx page that has many many div elements.
I have a div that has a span inside that will display a message
I have a div that has a background colour and it also contains an
I have a div(menubar) that has a lot of links and these links are
I have an absolutely positioned div that has a width of 100% with a
I have a div with some content that has a negative position relative. I

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.