Is there a way to adjust the value of a textbox by one on keyup, keydown, or tap events? Check out this example.
Here is the HTML structure:
<div class="right-content" id="rc-0" style="height: 250px;">
<div class="right-cont-main" id="rcm-0" style="height: 250px;">
<div class="scroll-line" id="sl-0" style="height: 250px;">
<div class="scroll-top" id="st-0"></div>
<div class="scroll-mid" id="sm-0" style="height: 248px;"></div>
<div class="scroll-bottom" id="sb-0"></div>
</div>
<div class="scroll-textbox" id="stb-0" style="margin-top: -138px;">
<input type="text" class="scroll-textbox-input right-input" value="50" id="in-1" name="txt">
</div>
</div>
</div>
</div>
</div>