parseSelector
In addition to modifying the parseSelector JavaScript in the sifr.js source, you can also adapt it to use jQuery.
Steps to replace parseSelector with jQuery:
1 - Make sure you include the jQuery JavaScript file.
2 - Remove all of the parseSelector code at the bottom of sifr.js
3 - Add the following line:
var parseSelector = $;
That's it. Now all of the selectors available to you in jQuery can work for sIFR3.

