jQuery Selector - Tabindex = -1
Is it possible to write a jquery selector for an element based o开发者_StackOverflow社区n its tabindex?
E.g.
<div TabIndex='-1'>jQuery me up baby</div>
Sure, this should be possible:
$('div[TabIndex*="-1"]')
You can find more documentation about it here.
Sure. It's just another attribute
$('[TabIndex="-1"]').
精彩评论