How to loop through buttons in javascript?

12,503

Solution 1

initiate a counter and keep checking till you get a button that doesn't exist

var counter = 1;
var button  = document.getElementById( "button" + counter + "menu" );

while ( button )
{
   button.addEventListener("click", function(){
      //do something here
   });

   button  = document.getElementById( "button" + ( ++counter ) + "menu" );
}

if all the buttons needs to be assigned a click event then

var buttons = document.querySelectorAll( "button[id^='button'][id$='menu']" );
for ( var counter = 0; counter < buttons.length; counter++)
{
    buttons[counter].addEventListener("click", function(){
      //do something here
   });
}

Solution 2

$('button').on('click',function(){
    alert($(this).attr('id'));
});

Now inside the click event use the $(this) jquery object

Solution 3

Please, try this (added function doSomething(item) to explain a real usage):

    function doSomething(item) {
        switch (item.id) {
            case 'button3menu': 
                // Make this button do something, only it. For example: 
                alert('Hey, you are pressing me!');
                break;
            default:
                // Make all the button's whose id is not contemplated as a case value 
                alert('My id is: ' + item.id);
                break;
    }}

        <script>
        (function()
        {
            var num = 4;
            for (var i = 0; i < num; i++)
            {
                var elem = document.createElement('button');
                elem.id = "button" + i + "menu";
                elem.innerHTML = "button" + i;
                document.body.appendChild(elem)

                elem.addEventListener('click', function(){doSomething(this)});
            }
        })()
        </script>

Solution 4

Assuming that you have a parent element for all or some of your buttons:

<div id="parent">
<button id="button1menu">button</button>
<button id="button2menu">button</button>
<button id="button3menu">button</button>
<button id="button4menu">button</button>
<button id="button5menu">button</button>
<button id="button6menu">button</button>
</div>

A single click event listener is enough to handle all of them:

document.getElementById("parent").addEventListener("click", function(e) {
     // e.target is the clicked element
    //check if button1menu has been clicked
    if(e.target && e.target.id == "button1menu") {
        alert(e.target.id + " was clicked");
    }

    //check if button2menu has been clicked
    if(e.target && e.target.id == "button2menu") {
        alert(e.target.id + " was clicked");
    }

  //etc
 });

You can experiment more in this fiddle

This is called event delegation and its good for you

Share:
12,503
Henry
Author by

Henry

Updated on June 09, 2022

Comments

  • Henry
    Henry almost 2 years

    I have number of different buttons on my website and I want to assign different task to each button, currently I am referencing them one by one using getElementByID and because I have so many buttons I ended up writing endless lines of codes just to reference the buttons, having some knowledge of java I understand that what I have done could be achieved with less code using for loop but I am not quite sure how to go about doing that, any help is welcomed.

    Currently this is how I am referencing my buttons:

        var Button1Menu = document.getElementById("button1menu"); 
        var Button2Menu = document.getElementById("button2menu"); 
        var Button3Menu = document.getElementById("button3menu"); 
        var Button4Menu = document.getElementById("button4menu"); 
        var Button5Menu = document.getElementById("button5menu"); 
        var Button6Menu = document.getElementById("button6menu"); 
        var Button7Menu = document.getElementById("button7menu"); 
        var Button8Menu = document.getElementById("button8menu"); 
        var Button9Menu = document.getElementById("button9menu"); 
        .....
        .....
        .....
        var Button43Menu = document.getElementById("button43menu"); 
    

    and then I am assigning click listener to each one:

    Button1Menu.onclick = function() {
    
         //doing something
    
      };
    

    Is there a better way of achieving this please.

  • gurvinder372
    gurvinder372 about 8 years
    Nick, OP hasn't used jquery tag in his OP.
  • Rayon
    Rayon about 8 years
    Just a suggestion: What about querySelectorAll ?
  • gurvinder372
    gurvinder372 about 8 years
    @RayonDabre OP has not mentioned that he wants to assign click event to all the buttons on his page, just to the ones which are id'd like this. Anyways, will add that solution as well.
  • gurvinder372
    gurvinder372 about 8 years
    @Teemu oh, thanks for pointing out. changed counter++ to ++counter.
  • Teemu
    Teemu about 8 years
    Not my down vote, but the first snippet attaches two handlers to the first button. Also, the question is not clear, all the handlers aren't necessarily the same (they might be though).
  • gurvinder372
    gurvinder372 about 8 years
    @Teemu actually now he has mentioned in his comment that buttons may do different things. Which actually tells me that OP is not clear on what he/she is looking for. Why would be making 43 buttons on a page and doing different stuff for each of them? Only possible reason for having so many buttons could be for a grid to have a button for each line item.
  • A1rPun
    A1rPun about 8 years
    I downvoted because your original answer breaks very easy, your edit however is good :)