The last example of jQuery\'s focus() documentation states
$(\'#id\').focus()
should make the input focused (active). I can\'t seem to get
Found a solution elsewhere on the net...
$('#id').focus();
did not work.
$('#id').get(0).focus();
did work.