Scanning for forms buttons pressed and taking action









up vote
0
down vote

favorite












We have an API generated array of records with buttons.



<td id=place-bets-1><button class="btn btn-primary my-2 my-sm-0" id="pick-team-5">Select</button></td>


Currently we have a static string of jquery calls to disable the jquery buttons pressed, and would like to reduce the ugliness of repetitive code using array lookups.



$("#pick-team-1").click(function () 
$("#pick-team-1").attr("disabled", true);
);

$("#pick-team-2").click(function ()
$("#pick-team-2").attr("disabled", true);
);

$("#pick-team-3").click(function ()
$("#pick-team-3").attr("disabled", true);
);

$("#pick-team-4").click(function ()
$("#pick-team-4").attr("disabled", true);
);

$("#pick-team-5").click(function ()
$("#pick-team-5").attr("disabled", true);
);


I thought to maybe index my buttons and launch an .onclick scan of an array of buttons pressed and disabling each one clicked.



i.e.



for (var i = 0; i < buttonspressed; i++) 
if (buttonspressed = 3)
maxoptionsselected();
else
pleaseselectmore();











share|improve this question























  • I can't understand you want to reduce the ugliness of repetitive code or limit count of pressed button?
    – Mohammad
    Nov 11 at 8:27














up vote
0
down vote

favorite












We have an API generated array of records with buttons.



<td id=place-bets-1><button class="btn btn-primary my-2 my-sm-0" id="pick-team-5">Select</button></td>


Currently we have a static string of jquery calls to disable the jquery buttons pressed, and would like to reduce the ugliness of repetitive code using array lookups.



$("#pick-team-1").click(function () 
$("#pick-team-1").attr("disabled", true);
);

$("#pick-team-2").click(function ()
$("#pick-team-2").attr("disabled", true);
);

$("#pick-team-3").click(function ()
$("#pick-team-3").attr("disabled", true);
);

$("#pick-team-4").click(function ()
$("#pick-team-4").attr("disabled", true);
);

$("#pick-team-5").click(function ()
$("#pick-team-5").attr("disabled", true);
);


I thought to maybe index my buttons and launch an .onclick scan of an array of buttons pressed and disabling each one clicked.



i.e.



for (var i = 0; i < buttonspressed; i++) 
if (buttonspressed = 3)
maxoptionsselected();
else
pleaseselectmore();











share|improve this question























  • I can't understand you want to reduce the ugliness of repetitive code or limit count of pressed button?
    – Mohammad
    Nov 11 at 8:27












up vote
0
down vote

favorite









up vote
0
down vote

favorite











We have an API generated array of records with buttons.



<td id=place-bets-1><button class="btn btn-primary my-2 my-sm-0" id="pick-team-5">Select</button></td>


Currently we have a static string of jquery calls to disable the jquery buttons pressed, and would like to reduce the ugliness of repetitive code using array lookups.



$("#pick-team-1").click(function () 
$("#pick-team-1").attr("disabled", true);
);

$("#pick-team-2").click(function ()
$("#pick-team-2").attr("disabled", true);
);

$("#pick-team-3").click(function ()
$("#pick-team-3").attr("disabled", true);
);

$("#pick-team-4").click(function ()
$("#pick-team-4").attr("disabled", true);
);

$("#pick-team-5").click(function ()
$("#pick-team-5").attr("disabled", true);
);


I thought to maybe index my buttons and launch an .onclick scan of an array of buttons pressed and disabling each one clicked.



i.e.



for (var i = 0; i < buttonspressed; i++) 
if (buttonspressed = 3)
maxoptionsselected();
else
pleaseselectmore();











share|improve this question















We have an API generated array of records with buttons.



<td id=place-bets-1><button class="btn btn-primary my-2 my-sm-0" id="pick-team-5">Select</button></td>


Currently we have a static string of jquery calls to disable the jquery buttons pressed, and would like to reduce the ugliness of repetitive code using array lookups.



$("#pick-team-1").click(function () 
$("#pick-team-1").attr("disabled", true);
);

$("#pick-team-2").click(function ()
$("#pick-team-2").attr("disabled", true);
);

$("#pick-team-3").click(function ()
$("#pick-team-3").attr("disabled", true);
);

$("#pick-team-4").click(function ()
$("#pick-team-4").attr("disabled", true);
);

$("#pick-team-5").click(function ()
$("#pick-team-5").attr("disabled", true);
);


I thought to maybe index my buttons and launch an .onclick scan of an array of buttons pressed and disabling each one clicked.



i.e.



for (var i = 0; i < buttonspressed; i++) 
if (buttonspressed = 3)
maxoptionsselected();
else
pleaseselectmore();








javascript jquery






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 11 at 0:34









Ele

22.6k42044




22.6k42044










asked Nov 11 at 0:32









NanoNet

336




336











  • I can't understand you want to reduce the ugliness of repetitive code or limit count of pressed button?
    – Mohammad
    Nov 11 at 8:27
















  • I can't understand you want to reduce the ugliness of repetitive code or limit count of pressed button?
    – Mohammad
    Nov 11 at 8:27















I can't understand you want to reduce the ugliness of repetitive code or limit count of pressed button?
– Mohammad
Nov 11 at 8:27




I can't understand you want to reduce the ugliness of repetitive code or limit count of pressed button?
– Mohammad
Nov 11 at 8:27












2 Answers
2






active

oldest

votes

















up vote
1
down vote



accepted










If all your buttons have the 'btn' class, then you can do:



$(".btn").click(function () 
$(this).attr("disabled", true);
);


That should bind to all the buttons and disable the one clicked.






share|improve this answer



























    up vote
    0
    down vote













    Below is one approach. You could use a class on the buttons to make the selector more specific if it isn't all buttons on the page. Updating the span just shows one way of querying the number of buttons selected. I'm not suggesting that you would have that in your click handler.






    var mySpan = $("#numSelected");
    $("button").click(function ()
    $(this).attr("disabled", true);
    mySpan.html($("button[disabled]").length);
    );

    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
    <table>
    <tr>
    <td><button class="btn btn-primary my-2 my-sm-0" id="pick-team-4">Select</button></td>
    <td id=place-bets-1><button class="btn btn-primary my-2 my-sm-0" id="pick-team-5">Select</button></td>
    </tr>
    </table>
    <span id="numSelected">0</span> selected








    share|improve this answer






















      Your Answer






      StackExchange.ifUsing("editor", function ()
      StackExchange.using("externalEditor", function ()
      StackExchange.using("snippets", function ()
      StackExchange.snippets.init();
      );
      );
      , "code-snippets");

      StackExchange.ready(function()
      var channelOptions =
      tags: "".split(" "),
      id: "1"
      ;
      initTagRenderer("".split(" "), "".split(" "), channelOptions);

      StackExchange.using("externalEditor", function()
      // Have to fire editor after snippets, if snippets enabled
      if (StackExchange.settings.snippets.snippetsEnabled)
      StackExchange.using("snippets", function()
      createEditor();
      );

      else
      createEditor();

      );

      function createEditor()
      StackExchange.prepareEditor(
      heartbeatType: 'answer',
      convertImagesToLinks: true,
      noModals: true,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: 10,
      bindNavPrevention: true,
      postfix: "",
      imageUploader:
      brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
      contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
      allowUrls: true
      ,
      onDemand: true,
      discardSelector: ".discard-answer"
      ,immediatelyShowMarkdownHelp:true
      );



      );













      draft saved

      draft discarded


















      StackExchange.ready(
      function ()
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53244773%2fscanning-for-forms-buttons-pressed-and-taking-action%23new-answer', 'question_page');

      );

      Post as a guest















      Required, but never shown

























      2 Answers
      2






      active

      oldest

      votes








      2 Answers
      2






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes








      up vote
      1
      down vote



      accepted










      If all your buttons have the 'btn' class, then you can do:



      $(".btn").click(function () 
      $(this).attr("disabled", true);
      );


      That should bind to all the buttons and disable the one clicked.






      share|improve this answer
























        up vote
        1
        down vote



        accepted










        If all your buttons have the 'btn' class, then you can do:



        $(".btn").click(function () 
        $(this).attr("disabled", true);
        );


        That should bind to all the buttons and disable the one clicked.






        share|improve this answer






















          up vote
          1
          down vote



          accepted







          up vote
          1
          down vote



          accepted






          If all your buttons have the 'btn' class, then you can do:



          $(".btn").click(function () 
          $(this).attr("disabled", true);
          );


          That should bind to all the buttons and disable the one clicked.






          share|improve this answer












          If all your buttons have the 'btn' class, then you can do:



          $(".btn").click(function () 
          $(this).attr("disabled", true);
          );


          That should bind to all the buttons and disable the one clicked.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 11 at 0:41









          Poul Bak

          5,43331132




          5,43331132






















              up vote
              0
              down vote













              Below is one approach. You could use a class on the buttons to make the selector more specific if it isn't all buttons on the page. Updating the span just shows one way of querying the number of buttons selected. I'm not suggesting that you would have that in your click handler.






              var mySpan = $("#numSelected");
              $("button").click(function ()
              $(this).attr("disabled", true);
              mySpan.html($("button[disabled]").length);
              );

              <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
              <table>
              <tr>
              <td><button class="btn btn-primary my-2 my-sm-0" id="pick-team-4">Select</button></td>
              <td id=place-bets-1><button class="btn btn-primary my-2 my-sm-0" id="pick-team-5">Select</button></td>
              </tr>
              </table>
              <span id="numSelected">0</span> selected








              share|improve this answer


























                up vote
                0
                down vote













                Below is one approach. You could use a class on the buttons to make the selector more specific if it isn't all buttons on the page. Updating the span just shows one way of querying the number of buttons selected. I'm not suggesting that you would have that in your click handler.






                var mySpan = $("#numSelected");
                $("button").click(function ()
                $(this).attr("disabled", true);
                mySpan.html($("button[disabled]").length);
                );

                <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
                <table>
                <tr>
                <td><button class="btn btn-primary my-2 my-sm-0" id="pick-team-4">Select</button></td>
                <td id=place-bets-1><button class="btn btn-primary my-2 my-sm-0" id="pick-team-5">Select</button></td>
                </tr>
                </table>
                <span id="numSelected">0</span> selected








                share|improve this answer
























                  up vote
                  0
                  down vote










                  up vote
                  0
                  down vote









                  Below is one approach. You could use a class on the buttons to make the selector more specific if it isn't all buttons on the page. Updating the span just shows one way of querying the number of buttons selected. I'm not suggesting that you would have that in your click handler.






                  var mySpan = $("#numSelected");
                  $("button").click(function ()
                  $(this).attr("disabled", true);
                  mySpan.html($("button[disabled]").length);
                  );

                  <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
                  <table>
                  <tr>
                  <td><button class="btn btn-primary my-2 my-sm-0" id="pick-team-4">Select</button></td>
                  <td id=place-bets-1><button class="btn btn-primary my-2 my-sm-0" id="pick-team-5">Select</button></td>
                  </tr>
                  </table>
                  <span id="numSelected">0</span> selected








                  share|improve this answer














                  Below is one approach. You could use a class on the buttons to make the selector more specific if it isn't all buttons on the page. Updating the span just shows one way of querying the number of buttons selected. I'm not suggesting that you would have that in your click handler.






                  var mySpan = $("#numSelected");
                  $("button").click(function ()
                  $(this).attr("disabled", true);
                  mySpan.html($("button[disabled]").length);
                  );

                  <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
                  <table>
                  <tr>
                  <td><button class="btn btn-primary my-2 my-sm-0" id="pick-team-4">Select</button></td>
                  <td id=place-bets-1><button class="btn btn-primary my-2 my-sm-0" id="pick-team-5">Select</button></td>
                  </tr>
                  </table>
                  <span id="numSelected">0</span> selected








                  var mySpan = $("#numSelected");
                  $("button").click(function ()
                  $(this).attr("disabled", true);
                  mySpan.html($("button[disabled]").length);
                  );

                  <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
                  <table>
                  <tr>
                  <td><button class="btn btn-primary my-2 my-sm-0" id="pick-team-4">Select</button></td>
                  <td id=place-bets-1><button class="btn btn-primary my-2 my-sm-0" id="pick-team-5">Select</button></td>
                  </tr>
                  </table>
                  <span id="numSelected">0</span> selected





                  var mySpan = $("#numSelected");
                  $("button").click(function ()
                  $(this).attr("disabled", true);
                  mySpan.html($("button[disabled]").length);
                  );

                  <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
                  <table>
                  <tr>
                  <td><button class="btn btn-primary my-2 my-sm-0" id="pick-team-4">Select</button></td>
                  <td id=place-bets-1><button class="btn btn-primary my-2 my-sm-0" id="pick-team-5">Select</button></td>
                  </tr>
                  </table>
                  <span id="numSelected">0</span> selected






                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited Nov 11 at 0:51

























                  answered Nov 11 at 0:42









                  Ryan C

                  733210




                  733210



























                      draft saved

                      draft discarded
















































                      Thanks for contributing an answer to Stack Overflow!


                      • Please be sure to answer the question. Provide details and share your research!

                      But avoid


                      • Asking for help, clarification, or responding to other answers.

                      • Making statements based on opinion; back them up with references or personal experience.

                      To learn more, see our tips on writing great answers.





                      Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                      Please pay close attention to the following guidance:


                      • Please be sure to answer the question. Provide details and share your research!

                      But avoid


                      • Asking for help, clarification, or responding to other answers.

                      • Making statements based on opinion; back them up with references or personal experience.

                      To learn more, see our tips on writing great answers.




                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function ()
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53244773%2fscanning-for-forms-buttons-pressed-and-taking-action%23new-answer', 'question_page');

                      );

                      Post as a guest















                      Required, but never shown





















































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown

































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown







                      Popular posts from this blog

                      How to how show current date and time by default on contact form 7 in WordPress without taking input from user in datetimepicker

                      Syphilis

                      Darth Vader #20