Stepper Demo


View Documentation

Basic

The most basic method is simply applying the Stepper plugin:

<input type="number" />
$("input[type='number']").stepper();
Demo

Ranges

Stepper will automatically detect the minimum, maximum and increment values based on the min, max and step attributes:

<input type="number" min="2" max="20" step="2" />
Demo