I have a problem with Rate Yo!
When the user clicks on the stars, the rating is added.
After clicking I would like to add an attribute to id="rateYo" (data-rateyo-read-only = "true"): http://rateyo.fundoocode.ninja/#option-readonly - which blocks the possibility of voting again.
My code is:
$ ("#rateYo").click (function () {
$ ('#rateYo').attr('data-rateyo-read-only','true');
});