Bug Tracker


JQuery Plugin to provide additional selectors for the query expression syntax, such as :modified :focus :blur :radio


You can download it from the More JQuery Selectors development web page.
Written by George Adamson


This plugin extends JQuery's already powerful selector syntax for those who need some more specific expressions. Some are novel and others just provide a simpler or shorter way to achieve a selection. It is a fairly small plugin that requires no method call to initialise it.


Some examples...

- To find form elements changed since page load:

  $("INPUT:modified")


- To find the element that last had the focus, such as when user clicks submit:

  $("INPUT:blur")


- To find OPTION, RADIO and CHECKBOX elements that were selected by default when the page loaded:

  $("*:option-def")