here is my jsfiddle.
I have a class numberonly it works on load page, but when I append input it is not working on text box.
I know it not re-initialize after I append input that is my main aim to append event on append.
This is my html:: (Please see jsfiddle)
<div id='addinputdiv'>
  <input type="text" class='numberonly' />
 </div>
<button onclick="addinputt()">Add Input</button>
numberonly class have on key down and key up events, I want to bind it on new input append.
