Using the same plugin twice
Hey,
I have a page where im using the Star Rating Widget. I need it to change more than one set of radio buttons into stars, but under the same div.
- jQuery(document).ready(function(){
- jQuery("#stars-disabled").stars({ disabled: true});
- });
#stars-disabled being the div, which is used more than once as i have a random amount of users commenting on and rating the same product.
So far it only converts the first set it comes across, then the rest are left as normal.
Anybody know how i can get jQuery to continue changing all radio buttons within the stars-disabled div.