Reputation: 7259
I tried giving the checkbox a tabIndex but that didn't seem to affect anything.
Upvotes: 0
Views: 1233
Reputation: 25165
You have to use javascript in order to do that.
// jquery example
$('#elementid').focus();
A tabindex, like the name says, works for the TAB key.
Upvotes: 1