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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T12:21:17+00:00 2026-06-17T12:21:17+00:00

doStuff(document.getElementById(myCircle1 myCircle2 myCircle3 myCircle4)); This doesn’t work, so do I need a comma or

  • 0
doStuff(document.getElementById("myCircle1" "myCircle2" "myCircle3" "myCircle4"));

This doesn’t work, so do I need a comma or semi-colon to make this work?

  • 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-17T12:21:18+00:00Added an answer on June 17, 2026 at 12:21 pm

    document.getElementById() only supports one name at a time and only returns a single node not an array of nodes. You have several different options:

    1. You could implement your own function that takes multiple ids and returns multiple elements.
    2. You could use document.querySelectorAll() that allows you to specify multiple ids in a CSS selector string .
    3. You could put a common class names on all those nodes and use document.getElementsByClassName() with a single class name.

    Examples of each option:

    doStuff(document.querySelectorAll("#myCircle1, #myCircle2, #myCircle3, #myCircle4"));
    

    or:

    // put a common class on each object
    doStuff(document.getElementsByClassName("circles"));
    

    or:

    function getElementsById(ids) {
        var idList = ids.split(" ");
        var results = [], item;
        for (var i = 0; i < idList.length; i++) {
            item = document.getElementById(idList[i]);
            if (item) {
                results.push(item);
            }
        }
        return(results);
    }
    
    doStuff(getElementsById("myCircle1 myCircle2 myCircle3 myCircle4"));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Using plain JavaScript I can do stuff like this: var ninjaTurtle = document.getElementById('raphael') ||
So I have the submit button that looks like this: <a href=# id=submitbutton onClick=document.getElementById('UploaderSWF').submit();>
I have this code in a global JS file. $(document).ready(function() { DoStuff(); }); Unfortunately
I have some code like this: try { doStuff(); } catch(SpecificException) { if(e.Message ==
Consider the code: class Work { public void DoStuff(string s) { Console.WriteLine(s); // ..
At the moment I write stored procedures this way: create proc doStuff @amount int
I have read that a using like this: using (myObject) { myObject.DoStuff(); } Can
I have the following code: var tempIdx = document.getElementById('cityBuild').selectedIndex; var tempBuilding = document.getElementById('cityBuild').options[tempIdx].value; //
Or do I have to do something like this: var nodes = document.childNodes; for
<input type=button value='Do Stuff' onClick='document.cookie = Note_<% Response.Write(arrTest(0,i)) %> = ' + (Document.getElementById(StuffTest<% Response.Write(arrTest(0,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.