I have two text fields, and when TAB is pressed from one text field, it goes to another place, and not to the next text field.
My code is:
$(function () { $("input[id$=txt1]").bind('keydown', function (e) { if (e.which == 9) {
When I click the tab for txt1, it should go to txt2, but it is not.
Any help?
source share