Focus Slap Key

by Luis Valle

HTML

<input id="txtVal" type="text" />

JavaScript

(function () {
$("#txtVal")[0].focus();
$("#txtVal").trigger($.Event('keypress', {which: 49}));
})();