jquery selection basics
[sourcecode language="javascript"]
$(':checkbox') //If you want to select all checkboxes,
$(':checkbox:enabled') //Select all checkboxes enabled
$(':enabled, checkbox') //This works on Firefox and Chrome, but not on IE
[/sourcecode]
To be continued...
Comments