I am using this ligature.js script to add ligatures to my site: http://code.google.com/p/ligature-js/
The problem I am having is I want to only apply it to certain class names because if it gets applied to some system fonts, other than the web font I am loading in, the ligature characters do not appear in Windows.
The docs say to implement it on specific elements using:
ligature(false, document.getElementById('myMemoirs'));
How can I use this to apply it to different classes, like .site-title, or use jquery to do this? Thanks in advance.