🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

Select Step is a jQuery plugin that converts the standard select box into an input spinner with increment / decrement step buttons.

Select input-spinner

Documentation

jQuery-Select-Step

Transform select element into an input step.

Instalation

Include jquery-select-step.css from folder dist.

<link rel="stylesheet" href="./dist/jquery-select-step.css">

Include jquery-select-step.js from folder dist.

<script src="./dist/jquery-select-step.js"></script>

Call the plugin on your script.

jQuery(".select-element").selectStep({   incrementLabel: "+",   decrementLabel: "-",   onChange: function(value) {     console.log(value, "value");   } });

You May Also Like