This plugin provides support of the Sizzle css selectors engine for RightJS.
By default RightJS supports standard CSS3 selectors only.
Sizzle is an external css selectors engine that provides a full stack CSS3 selectors support on all browsers, plus it provides several additional conventional selectors, like :odd, :even, :not, etc.
$('my-table').find('tr:odd');
$('my-table').find('tr:even');
$('my-list').first('li:not(*.marked)');
That’s pretty much it.