On tap hold increase the value of text box

On tap hold increase the value of text box

I just want to increase value plus 1 in text box, when tap hold starts and till user leaves it.

  1. <input type="text" value = 1 id="number">
  2.     <span id = "upSpan" > Up </span>

  3. $('#upSpan').on("taphold", function () {
  4.     var number = $('#number').val();
  5.      $('#number').val(parseInt(number) + 1)
  6. });
this should be repeated till he leaves.

Like input type number.