I'm using a plugin for star ratings: raty
It has a path option where you can set your path to find your star images. I was wondering if jQuery allows multiple paths to be set or does it only work if the plugin has defined the ability?
for instance in the plugin, you'd normally do:
$('.stars').raty
readOnly: true
path: '../assets'
Can you do something like this:
$('.stars').raty
readOnly: true
path: ['../assets', '../../assets']
or something? Obviously this array doesn't work. The hack I did was just to change the class, but was curious if its possible to do it without changing class.