jARIA now supports :ariaRole(role) and :ariaState(state=value) selectors

jARIA now supports :ariaRole(role) and :ariaState(state=value) selectors


The jQuery ARIA plugin, jARIA
(http://www.outstandingelephant.com/jaria) now supports selectors for
ARIA roles and states.
I've added the following selectors:
:ariaRole(role) -- selects elements by ARIA role
:ariaState(state) -- selects elements with state set to 'true'
:ariaState(state=value) -- selects elements with state set to value
Examples:
Select all of the sliders that aren't at zero:
$(':ariaRole(slider)').not(':ariaState(valuenow=0)')
Select all of the checked checkboxes:
$(':ariaRole(checkbox):ariaState(checked)')
The ariaRoleFilter() and ariaStateFilter() methods are no longer supported.
--Chris