Skip to content

Instantly share code, notes, and snippets.

@lukelex
Created October 4, 2012 03:28
Show Gist options
  • Select an option

  • Save lukelex/3831299 to your computer and use it in GitHub Desktop.

Select an option

Save lukelex/3831299 to your computer and use it in GitHub Desktop.
Simple start rating script
$('#user_stats_resume #top_stats .stars .star').click(function(){
rate = $(this).data('rate');
stars = $('#user_stats_resume #top_stats .stars .star');
stars.removeClass('selected');
stars.each(function() {
$(this).addClass('selected');
if ($(this).data('rate') === rate) return false;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment