Hi,
I am loading the rating control with nothing selected. I want to enable a DIV based on the user selecting a rating value;
i have tried the following but with no luck; i have also tried the change event
$("#igRating2").click(function () { EnableDiv() });
Hi michaeltocik,
Have you tried with, the following:
$(
"igRating2"
).igRating({
valueChange :
function
(evt, ui) {
EnableDiv();
}
});
Hope that helps,
Thanks,
Hi Todor,
I have set the rating control like the custom items example where you can select only one item.
With the code posted the event does not seem to fire as expected. It will fire after I have clicked a few times all over the place, but will not fire after each or every change.