<input type="text" id="myinput" name="myinput" value="" />
how do i use jquery to detect the "onchange" event of the input field.I tried everything but nothing seems to fire it.
$("#myinput").bind("onchange",alert("test"));
$("#myinput").change(alert("test"));
im using jquery 2.03.Its the "onchange" aka once the user finishes typing then fire event.Not fire after each letter changed, because im getting json from the server and it would cause a tremendous load if it where to call on each letter change.
as paul said this is the solution i guess..thx alot