Skip to content
Advertisement

Autonumbering upon keyboard press

I have an autonumbering when Ctrl and Enter are pressed. My current problem is, when i start my autonumbering at the 3rd textbox, my 2nd textbox is getting affected. How can i retain the other values of my textbox? The textbox before them should not change their value.

Thank you.

JavaScript
JavaScript

Advertisement

Answer

You can create a variable to keep track of whether or not the each loop has crossed the target element and then only modify the input’s value when it is true. This will make sure you only modify the inputs after the target.

See runChange in example:

JavaScript
JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement