Focus Slap Key
by Luis Valle
HTML
<input id="txtVal" type="text" />
JavaScript
(function () {
$("#txtVal")[0].focus();
$("#txtVal").trigger($.Event('keypress', {which: 49}));
})();
by Luis Valle
<input id="txtVal" type="text" />
(function () {
$("#txtVal")[0].focus();
$("#txtVal").trigger($.Event('keypress', {which: 49}));
})();