I have this piece of code:
<input type="text" name="desc" id="desc" onchange="OnDescChange();" />
but it does not act as i want. It runs the function when i leave the box, i would like to do it everytime the content of that inputfield changes, how do i do that?
(im trying to make a suggestionbox to the users input).
Ive also tried jquerys .change but it gives med the same result.
Try onKeyUp or onKeyPress.