Im working on project to display rate on some field and I’m already get the rate for this field from the server like "60%" or "50%" and so on…
I don’t know if there any jQuery plugin can help just to display the rate without clicking feature,
something like
var rate = "60%";
jQuery.setRate(rate); // or something like this
any help will be appreciated
Pesonally i dont think you need a plugin todo that, you can just show a Different image according the rate you get from db.
First, remove non numeric chars, just to get the integer(numeric) value.
After that, you just have to create your Rules for the different starts image(?)
well, if you consider not to add a plugin, if you only want to show the results, maybe you can even not do that on client site and “process” this image choice on serverside (as other option)…