tags:

views:

16

answers:

1

The title says it all I tried giving the checkbox a tabIndex but that didn't seem to affect anything. Thanks.

A: 

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.

Frankie