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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T03:01:43+00:00 2026-05-24T03:01:43+00:00

I have a list with 200 divs, <div id=sId_1 class=sDiv></div> <div id=sId_2 class=sDiv></div> ….

  • 0

I have a list with 200 divs,

<div id="sId_1" class="sDiv"></div>
<div id="sId_2" class="sDiv"></div>
....
<div id="sId_200" class="sDiv"></div>.

What of the following two is faster?

-- each loop -- with i++;
    <div onclick="callSomeFunction('click');" id="sId_'+i+'" ></div> 
-- each loop --


-- each loop -- with i++;
    $('#sId_'+i+'').click( function (event) ....
-- each loop --


$('.sDiv').click( function (event) ......

Is it the first solution? Because jQuery creates an object in the $.cache for every div.

PS: is an object with more than 1000 entries a problem for JavaScript?

  • 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-24T03:01:44+00:00Added an answer on May 24, 2026 at 3:01 am

    You can use event delegation to attach a single “smart” event handler to a suitable parent container:

    $("#parent").delegate("div[id^='sId']", "click", function() {
        // do something
    });
    

    Advantages of the above approach:

    • Only one event handler.
    • Can be attached to a jQuery object as opposed to a selector, which
      makes .delegate calls chainable.
    • Works for future elements, such as those added via JS/Ajax.
    • You can stop the propagation/bubbling of events since they only bubble up to the parent and not the document element as is the case with .live.

    Reference:

    http://api.jquery.com/delegate/

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

Sidebar

Related Questions

I have a list of TV shows which is about 200 shows long. Each
I have two list list1 = [(100, A, 22), (200,B, 33), (300, C, 44)]
I have a list/queue of 200 commands that I need to run in a
I have list in python which has following entries name-1 name-2 name-3 name-4 name-1
I have a list of about 200 integers whose values are between 1 and
I have a large list (over 200,000) of strings that I'd like to compare
I have a list: Name Country Value John Ireland 100 Mary UK 200 Peter
I have a list of dictionaries that looks something like this: toCSV = [{'name':'bob','age':25,'weight':200},{'name':'jim','age':31,'weight':180}]
I have a large list of values (100-200 character strings) and I need to
When i have a list IList<int> list = new List<int>(); list.Add(100); list.Add(200); list.Add(300); list.Add(400);

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.