1setTimeout(function() { $("#txtName").keypress() } , 1000);
2// OR
3$(function() {
4 $('item').keydown();
5 $('item').keypress();
6 $('item').keyup();
7 $('item').blur();
8});
9$(function() {
10 var e = $.Event('keypress');
11 e.which = 65; // Character 'A'
12 $('item').trigger(e);
13});