Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 6th, 2012  |  syntax: None  |  size: 0.47 KB  |  hits: 6  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Initializing score using raty plugin
  2. jQuery.each($('.new_star'), function(index, element){
  3.             var rating = jQuery(this).attr('data-rating');
  4.             jQuery(element).raty({
  5.                 readOnly : true,
  6.                 half : true,
  7.                 path : '/assets/images/',
  8.                 starOff : 'star-off.png',
  9.                 starHalf : 'star-half.png',
  10.                 starOn : 'star-on.png',
  11.                 'score' : rating
  12.             });
  13.         });