# Numeric Stepper

**URL:** https://forum.kirupa.com/t/numeric-stepper/145637
**Category:** Uncategorized
**Created:** [April 24, 2005, 12:34pm UTC](https://forum.kirupa.com/t/numeric-stepper/145637 "2005-04-24T12:34:31Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Seticus](https://avatars.discourse-cdn.com/v4/letter/s/46a35a/32.png) [@Seticus](https://forum.kirupa.com/u/Seticus)
#### Post date: [April 24, 2005, 12:34pm UTC](https://forum.kirupa.com/t/numeric-stepper/145637/1 "2005-04-24T12:34:31Z")

</div>

is there a way to make a numeric stepper that starts from 5, with stepSize 4?  
i.e giving this:[AS]on (load) {  
this.value = 5;  
this.stepSize = 4;  
}[/AS]  
seems to jumps from 5 **to 8** -\> 16 -\> …, instead of 5 -\> 9 -\> 13 -\> …  
(I’m smelling a bug because when you ask the nextValue of it, it gives you the right value)

any ideas on how to solve this (maybe using a prototype?)
