I'm using Chris Richards' Star Rating jQuery Plugin from Github alongwith the jQuery Template plugin. When the data is inline, the rating control works fine. See sample & source.

However, when the rating control is used with dynamically generated data, the star image doesn't get applied through the CSS to the dropdown control that internally handles the rating. See sample (click on buttons there) & source.

The alert that I have set to the rating control works though. What can be done to make the stars show up instead of the dropdown?

link|improve this question

50% accept rate
feedback

1 Answer

up vote 1 down vote accepted

You will need to call $(".rating").rating(); after the dynamic content load is complete.

Modify your getJSON code:

$("#flickr").live("click", function() {
  var url = "http://api.flickr.com/services/feeds/groups_pool.gne?id=44124373027@N01&lang=en-us&format=json&jsoncallback=?";
  // Grab some flickr images of cats
  $.getJSON(url, function (data) {
    // Format the data using the catTemplate
    $("#result").empty().append("");
    $("#catTemplate").tmpl(data.items).appendTo("#result");
    // set up rating plugin
    $(".rating").rating();
  });
});
link|improve this answer
Thanks for responding. I modified my code as you suggested but the stars don't show up & the dropdown doesn't appear as well. Can you please check the source & tell me what I'm missing - jsbin.com/adije/4/edit – mvark Nov 8 '10 at 14:43
@mvark The line below <style type="text/css" media="screen"> is a typo/error. You are missing the class for the CSS. Here's a corrected one: jsbin.com/adije/5/edit – Nate Pinchot Nov 8 '10 at 21:26
That's an embarrassing mistake. Thanks for taking the time to identify it & making my sample work. – mvark Nov 9 '10 at 16:37
@mvark No worries :) Glad I could help. – Nate Pinchot Nov 9 '10 at 21:30
May I suggest a rating plugin I just developed: rateit.codeplex.com – Gidon Nov 21 '10 at 9:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.