"Buttons minus and plus in input with min, max default values"
Bootstrap 3.2.0 Snippet by suabo

<link href="//netdna.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//netdna.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <!------ Include the above in your HEAD tag ----------> <div class="center"> <p>Without min or max value, set the default of min = 1 and max = 9999999999999</p> <div class="input-group"> <span class="input-group-btn"> <button type="button" class="btn btn-default btn-number" disabled="disabled" data-type="minus" data-field="quant[1]"> <span class="glyphicon glyphicon-minus"></span> </button> </span> <input type="text" name="quant[1]" class="form-control input-number" value="1"> <span class="input-group-btn"> <button type="button" class="btn btn-default btn-number" data-type="plus" data-field="quant[1]"> <span class="glyphicon glyphicon-plus"></span> </button> </span> </div> <p></p> <p>With min = 1 and max = 100</p> <div class="input-group"> <span class="input-group-btn"> <button type="button" class="btn btn-danger btn-number" data-type="minus" data-field="quant[2]"> <span class="glyphicon glyphicon-minus"></span> </button> </span> <input type="text" name="quant[2]" class="form-control input-number" value="10" min="1" max="100"> <span class="input-group-btn"> <button type="button" class="btn btn-success btn-number" data-type="plus" data-field="quant[2]"> <span class="glyphicon glyphicon-plus"></span> </button> </span> </div> <p></p> </div>
.center{ width: 150px; margin: 40px auto; }
//plugin bootstrap minus and plus //http://jsfiddle.net/laelitenetwork/puJ6G/ $( document ).ready(function() { $('.btn-number').click(function(e){ e.preventDefault(); var fieldName = $(this).attr('data-field'); var type = $(this).attr('data-type'); var input = $("input[name='"+fieldName+"']"); var currentVal = parseInt(input.val()); if (!isNaN(currentVal)) { if(type == 'minus') { var minValue = parseInt(input.attr('min')); if(!minValue) minValue = 1; if(currentVal > minValue) { input.val(currentVal - 1).change(); } if(parseInt(input.val()) == minValue) { $(this).attr('disabled', true); } } else if(type == 'plus') { var maxValue = parseInt(input.attr('max')); if(!maxValue) maxValue = 9999999999999; if(currentVal < maxValue) { input.val(currentVal + 1).change(); } if(parseInt(input.val()) == maxValue) { $(this).attr('disabled', true); } } } else { input.val(0); } }); $('.input-number').focusin(function(){ $(this).data('oldValue', $(this).val()); }); $('.input-number').change(function() { var minValue = parseInt($(this).attr('min')); var maxValue = parseInt($(this).attr('max')); if(!minValue) minValue = 1; if(!maxValue) maxValue = 9999999999999; var valueCurrent = parseInt($(this).val()); var name = $(this).attr('name'); if(valueCurrent >= minValue) { $(".btn-number[data-type='minus'][data-field='"+name+"']").removeAttr('disabled') } else { alert('Sorry, the minimum value was reached'); $(this).val($(this).data('oldValue')); } if(valueCurrent <= maxValue) { $(".btn-number[data-type='plus'][data-field='"+name+"']").removeAttr('disabled') } else { alert('Sorry, the maximum value was reached'); $(this).val($(this).data('oldValue')); } }); $(".input-number").keydown(function (e) { // Allow: backspace, delete, tab, escape, enter and . if ($.inArray(e.keyCode, [46, 8, 9, 27, 13, 190]) !== -1 || // Allow: Ctrl+A (e.keyCode == 65 && e.ctrlKey === true) || // Allow: home, end, left, right (e.keyCode >= 35 && e.keyCode <= 39)) { // let it happen, don't do anything return; } // Ensure that it is a number and stop the keypress if ((e.shiftKey || (e.keyCode < 48 || e.keyCode > 57)) && (e.keyCode < 96 || e.keyCode > 105)) { e.preventDefault(); } }); });

Related: See More


Questions / Comments:

How can I change the min value to 0 instead of 1? Please :/

Super Seo () - 8 years ago - Reply 0