How do i send a trigger keypress of a particular keyCode eg. "9" event on a TextBox using JQuery programmatically?
This what i intend to do; Programmatically enter a value to a TextBox and then programmatically trigger a tabkey on the TextBox to exit the field.
my code
$("#tags1").val("comp") // Works well
$("#tags1").trigger("keypress",[9]); // Fails!!
Gath