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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T00:58:09+00:00 2026-05-22T00:58:09+00:00

On document ready, I am trying to create an object for all my div(s)

  • 0

On document ready, I am trying to create an object for all my div(s) in a class and assigned them based on the div’s attribute ‘id’. Here are my codes which doesn’t work, I can’t figure out.

<div class="supercolor" >                       
   <div class="colordiv" id="#111111" style="background-color:#111111;">&nbsp;</div>
   <div class="colordiv" id="#222222" style="background-color:#222222;" >&nbsp;</div>                
   <div class="colordiv" id="#333333" style="background-color:#333333;">&nbsp;</div>
</div>

And in my script section.

$(document).ready(function() {

   $('div.supercolor > div').each(function() {
      var color_object = { $(this).attr('id') : false }
   });
});

Thank you

  • 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-05-22T00:58:10+00:00Added an answer on May 22, 2026 at 12:58 am
    $(function() {
    
        var divObjects = $("div.supercolor > div").map(function(val) {
            return new DivObject(this.id);
        }).get();
    
    });
    
    function DivObject(id) {
        this.id = id; 
        ...
    }
    

    This will take all your <div>‘s and map them to div objects. You can pass in data from your individual <div> like the id and pass it to the constructor.

    You have to call .get() to get out an array.

    [Edit]

    var testDiv = $.grep(divObjects, function(val) {
        val.id === "test"
    })[0];
    

    This code snippet may look more familiar though

    var testDiv;
    for (var i = 0, ii = divObjects.length; i < ii; i++) {
        var div = divObjects[i];
        if (div.id === "test") {
            testDiv = div;
            break;
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to create a dummy wrapper class ( a mongoengine Document )
I am trying to call a user defined function in jQuery: $(document).ready(function() { $('#btnSun').click(function()
I' m trying to enable adding/deleting rows to/from table using folowing code: Script: $(document).ready(function()
$(document).ready(function() { function countChecked() { var n = $(input:checked).length; $(div).text(n + (n <= 1
I'm trying to create a jquery function that can be called both on ready
I have been trying to create rotating object using jQuery and without any other
I am trying to create an animate effect like the following. // JavaScript Document
I am trying to store an object as an attribute in another object but
I'm trying to read a file to produce a DOM Document, but the file
I'm trying to read the following Xml document as fast as I can and

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.