How to make an increment/decrement input inside dropdown?





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







0















So my goal is to make an dropdown with decrement/increment button like below.



https://imgur.com/A4zleSX



and these are my current codes



<div class="dropdown">
<button class="btn border-0 dropdown-toggle form-control" type="button"
id="dropdownMenu2" data-toggle="dropdown" aria-expanded="false">
Dropdown</button>
<div class="dropdown-menu" style="width: 250px; background-color: #343a40"
aria-labelledby="dropdownMenu2">
<div class="dropdown-item">
<div class="row text-white">
<div class="col-md">
<i class="fa fa-user mr-2"></i>Adult</div>
<div class="col-md text-center">
<button class="btn btn-sm btn-success mx-2">+</button>
<span>1</span>
<button class="btn btn-sm btn-success mx-2">+</button>
</div>
</div>
</div>
</div>


So i've managed to make till this point, but i have problems when the button is clicked inside the dropdown, it scrolls to page the top and i also don't like the background color changes when the dropdown item is hovered.
please help me to make it happen, thank you



UPDATE:
so all left is preventing the page to scroll when the button inside dropdown is clicked, can anyone help please?










share|improve this question































    0















    So my goal is to make an dropdown with decrement/increment button like below.



    https://imgur.com/A4zleSX



    and these are my current codes



    <div class="dropdown">
    <button class="btn border-0 dropdown-toggle form-control" type="button"
    id="dropdownMenu2" data-toggle="dropdown" aria-expanded="false">
    Dropdown</button>
    <div class="dropdown-menu" style="width: 250px; background-color: #343a40"
    aria-labelledby="dropdownMenu2">
    <div class="dropdown-item">
    <div class="row text-white">
    <div class="col-md">
    <i class="fa fa-user mr-2"></i>Adult</div>
    <div class="col-md text-center">
    <button class="btn btn-sm btn-success mx-2">+</button>
    <span>1</span>
    <button class="btn btn-sm btn-success mx-2">+</button>
    </div>
    </div>
    </div>
    </div>


    So i've managed to make till this point, but i have problems when the button is clicked inside the dropdown, it scrolls to page the top and i also don't like the background color changes when the dropdown item is hovered.
    please help me to make it happen, thank you



    UPDATE:
    so all left is preventing the page to scroll when the button inside dropdown is clicked, can anyone help please?










    share|improve this question



























      0












      0








      0


      1






      So my goal is to make an dropdown with decrement/increment button like below.



      https://imgur.com/A4zleSX



      and these are my current codes



      <div class="dropdown">
      <button class="btn border-0 dropdown-toggle form-control" type="button"
      id="dropdownMenu2" data-toggle="dropdown" aria-expanded="false">
      Dropdown</button>
      <div class="dropdown-menu" style="width: 250px; background-color: #343a40"
      aria-labelledby="dropdownMenu2">
      <div class="dropdown-item">
      <div class="row text-white">
      <div class="col-md">
      <i class="fa fa-user mr-2"></i>Adult</div>
      <div class="col-md text-center">
      <button class="btn btn-sm btn-success mx-2">+</button>
      <span>1</span>
      <button class="btn btn-sm btn-success mx-2">+</button>
      </div>
      </div>
      </div>
      </div>


      So i've managed to make till this point, but i have problems when the button is clicked inside the dropdown, it scrolls to page the top and i also don't like the background color changes when the dropdown item is hovered.
      please help me to make it happen, thank you



      UPDATE:
      so all left is preventing the page to scroll when the button inside dropdown is clicked, can anyone help please?










      share|improve this question
















      So my goal is to make an dropdown with decrement/increment button like below.



      https://imgur.com/A4zleSX



      and these are my current codes



      <div class="dropdown">
      <button class="btn border-0 dropdown-toggle form-control" type="button"
      id="dropdownMenu2" data-toggle="dropdown" aria-expanded="false">
      Dropdown</button>
      <div class="dropdown-menu" style="width: 250px; background-color: #343a40"
      aria-labelledby="dropdownMenu2">
      <div class="dropdown-item">
      <div class="row text-white">
      <div class="col-md">
      <i class="fa fa-user mr-2"></i>Adult</div>
      <div class="col-md text-center">
      <button class="btn btn-sm btn-success mx-2">+</button>
      <span>1</span>
      <button class="btn btn-sm btn-success mx-2">+</button>
      </div>
      </div>
      </div>
      </div>


      So i've managed to make till this point, but i have problems when the button is clicked inside the dropdown, it scrolls to page the top and i also don't like the background color changes when the dropdown item is hovered.
      please help me to make it happen, thank you



      UPDATE:
      so all left is preventing the page to scroll when the button inside dropdown is clicked, can anyone help please?







      html css twitter-bootstrap bootstrap-4






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 26 '18 at 5:21







      Buddy

















      asked Nov 24 '18 at 14:27









      BuddyBuddy

      767




      767
























          1 Answer
          1






          active

          oldest

          votes


















          0














          Firstly you need to keep on dropdown when user click anything in it.
          JS:



            $('.keep-open').on({
          "shown.bs.dropdown": function() { $(this).attr('closable', false); },
          "click": function() { },
          "hide.bs.dropdown": function() { return $(this).attr('closable') == 'true'; }
          });

          $('.keep-open #dLabel').on({
          "click": function() {
          $(this).parent().attr('closable', true );
          }
          })


          html:



          <div class="dropdown-menu" role="menu" aria-labelledby="dLabel" style="width: 250px; background-color: #343a40" >
          <div style="display: block;text-align:center;margin-bottom:5px;margin-top:5px">
          <div style="display: inline-block;color:white">
          <i class="fa fa-user mr-2" style="margin:15px;"></i>Adult</div>

          <button class="btn btn-sm btn-success mx-2">-</button>
          <span>1</span>
          <button class="btn btn-sm btn-success mx-2">+</button>
          </div>
          <div style="display: block;text-align:center;margin-bottom:5px;">
          <div style="display: inline-block;color:white;">
          <i class="fa fa-user mr-2" style="color:white;margin:15px;"></i>Child</div>

          <button class="btn btn-sm btn-success mx-2">-</button>
          <span>1</span>
          <button class="btn btn-sm btn-success mx-2">+</button>
          </div>
          </div>


          plunker: http://plnkr.co/edit/s4nmZVXpLMzZLDSzVd24?p=preview






          share|improve this answer
























          • Hi, thanks for the solutions! it worked so far, but only one problem left, when i clid the button inside the dropdown it scrolls the page to the top, do you know how to fix it?

            – Buddy
            Nov 25 '18 at 2:17












          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',
          autoActivateHeartbeat: false,
          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%2f53459160%2fhow-to-make-an-increment-decrement-input-inside-dropdown%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          0














          Firstly you need to keep on dropdown when user click anything in it.
          JS:



            $('.keep-open').on({
          "shown.bs.dropdown": function() { $(this).attr('closable', false); },
          "click": function() { },
          "hide.bs.dropdown": function() { return $(this).attr('closable') == 'true'; }
          });

          $('.keep-open #dLabel').on({
          "click": function() {
          $(this).parent().attr('closable', true );
          }
          })


          html:



          <div class="dropdown-menu" role="menu" aria-labelledby="dLabel" style="width: 250px; background-color: #343a40" >
          <div style="display: block;text-align:center;margin-bottom:5px;margin-top:5px">
          <div style="display: inline-block;color:white">
          <i class="fa fa-user mr-2" style="margin:15px;"></i>Adult</div>

          <button class="btn btn-sm btn-success mx-2">-</button>
          <span>1</span>
          <button class="btn btn-sm btn-success mx-2">+</button>
          </div>
          <div style="display: block;text-align:center;margin-bottom:5px;">
          <div style="display: inline-block;color:white;">
          <i class="fa fa-user mr-2" style="color:white;margin:15px;"></i>Child</div>

          <button class="btn btn-sm btn-success mx-2">-</button>
          <span>1</span>
          <button class="btn btn-sm btn-success mx-2">+</button>
          </div>
          </div>


          plunker: http://plnkr.co/edit/s4nmZVXpLMzZLDSzVd24?p=preview






          share|improve this answer
























          • Hi, thanks for the solutions! it worked so far, but only one problem left, when i clid the button inside the dropdown it scrolls the page to the top, do you know how to fix it?

            – Buddy
            Nov 25 '18 at 2:17
















          0














          Firstly you need to keep on dropdown when user click anything in it.
          JS:



            $('.keep-open').on({
          "shown.bs.dropdown": function() { $(this).attr('closable', false); },
          "click": function() { },
          "hide.bs.dropdown": function() { return $(this).attr('closable') == 'true'; }
          });

          $('.keep-open #dLabel').on({
          "click": function() {
          $(this).parent().attr('closable', true );
          }
          })


          html:



          <div class="dropdown-menu" role="menu" aria-labelledby="dLabel" style="width: 250px; background-color: #343a40" >
          <div style="display: block;text-align:center;margin-bottom:5px;margin-top:5px">
          <div style="display: inline-block;color:white">
          <i class="fa fa-user mr-2" style="margin:15px;"></i>Adult</div>

          <button class="btn btn-sm btn-success mx-2">-</button>
          <span>1</span>
          <button class="btn btn-sm btn-success mx-2">+</button>
          </div>
          <div style="display: block;text-align:center;margin-bottom:5px;">
          <div style="display: inline-block;color:white;">
          <i class="fa fa-user mr-2" style="color:white;margin:15px;"></i>Child</div>

          <button class="btn btn-sm btn-success mx-2">-</button>
          <span>1</span>
          <button class="btn btn-sm btn-success mx-2">+</button>
          </div>
          </div>


          plunker: http://plnkr.co/edit/s4nmZVXpLMzZLDSzVd24?p=preview






          share|improve this answer
























          • Hi, thanks for the solutions! it worked so far, but only one problem left, when i clid the button inside the dropdown it scrolls the page to the top, do you know how to fix it?

            – Buddy
            Nov 25 '18 at 2:17














          0












          0








          0







          Firstly you need to keep on dropdown when user click anything in it.
          JS:



            $('.keep-open').on({
          "shown.bs.dropdown": function() { $(this).attr('closable', false); },
          "click": function() { },
          "hide.bs.dropdown": function() { return $(this).attr('closable') == 'true'; }
          });

          $('.keep-open #dLabel').on({
          "click": function() {
          $(this).parent().attr('closable', true );
          }
          })


          html:



          <div class="dropdown-menu" role="menu" aria-labelledby="dLabel" style="width: 250px; background-color: #343a40" >
          <div style="display: block;text-align:center;margin-bottom:5px;margin-top:5px">
          <div style="display: inline-block;color:white">
          <i class="fa fa-user mr-2" style="margin:15px;"></i>Adult</div>

          <button class="btn btn-sm btn-success mx-2">-</button>
          <span>1</span>
          <button class="btn btn-sm btn-success mx-2">+</button>
          </div>
          <div style="display: block;text-align:center;margin-bottom:5px;">
          <div style="display: inline-block;color:white;">
          <i class="fa fa-user mr-2" style="color:white;margin:15px;"></i>Child</div>

          <button class="btn btn-sm btn-success mx-2">-</button>
          <span>1</span>
          <button class="btn btn-sm btn-success mx-2">+</button>
          </div>
          </div>


          plunker: http://plnkr.co/edit/s4nmZVXpLMzZLDSzVd24?p=preview






          share|improve this answer













          Firstly you need to keep on dropdown when user click anything in it.
          JS:



            $('.keep-open').on({
          "shown.bs.dropdown": function() { $(this).attr('closable', false); },
          "click": function() { },
          "hide.bs.dropdown": function() { return $(this).attr('closable') == 'true'; }
          });

          $('.keep-open #dLabel').on({
          "click": function() {
          $(this).parent().attr('closable', true );
          }
          })


          html:



          <div class="dropdown-menu" role="menu" aria-labelledby="dLabel" style="width: 250px; background-color: #343a40" >
          <div style="display: block;text-align:center;margin-bottom:5px;margin-top:5px">
          <div style="display: inline-block;color:white">
          <i class="fa fa-user mr-2" style="margin:15px;"></i>Adult</div>

          <button class="btn btn-sm btn-success mx-2">-</button>
          <span>1</span>
          <button class="btn btn-sm btn-success mx-2">+</button>
          </div>
          <div style="display: block;text-align:center;margin-bottom:5px;">
          <div style="display: inline-block;color:white;">
          <i class="fa fa-user mr-2" style="color:white;margin:15px;"></i>Child</div>

          <button class="btn btn-sm btn-success mx-2">-</button>
          <span>1</span>
          <button class="btn btn-sm btn-success mx-2">+</button>
          </div>
          </div>


          plunker: http://plnkr.co/edit/s4nmZVXpLMzZLDSzVd24?p=preview







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 24 '18 at 16:04









          BartoszTermenaBartoszTermena

          7361313




          7361313













          • Hi, thanks for the solutions! it worked so far, but only one problem left, when i clid the button inside the dropdown it scrolls the page to the top, do you know how to fix it?

            – Buddy
            Nov 25 '18 at 2:17



















          • Hi, thanks for the solutions! it worked so far, but only one problem left, when i clid the button inside the dropdown it scrolls the page to the top, do you know how to fix it?

            – Buddy
            Nov 25 '18 at 2:17

















          Hi, thanks for the solutions! it worked so far, but only one problem left, when i clid the button inside the dropdown it scrolls the page to the top, do you know how to fix it?

          – Buddy
          Nov 25 '18 at 2:17





          Hi, thanks for the solutions! it worked so far, but only one problem left, when i clid the button inside the dropdown it scrolls the page to the top, do you know how to fix it?

          – Buddy
          Nov 25 '18 at 2:17




















          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.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53459160%2fhow-to-make-an-increment-decrement-input-inside-dropdown%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







          這個網誌中的熱門文章

          Tangent Lines Diagram Along Smooth Curve

          Yusuf al-Mu'taman ibn Hud

          Zucchini