I need a little help here... last several hours been trying to figure this out, and getting nowhere.
I found this simple jQuery Star rating system that i'd like to use, the original coding was using an INPUT field but I changed it to being used with a Select Option Dropdown. When it's displayed on the left you have the dropdown and to the right you have the default STARS. Now when you click on the STARS, the dropdown options change... which is good, that part I want to keep, However when you use the actual Dropdown the stars wont change... here is the coding...
<select name="my_input" id="rating_simple">
<option value="0" selected="selected"></option>
<option value="1">Poor</option>
<option value="2">Below Average</option>
<option value="3">Average</option>
<option value="4">Good</option>
<option value="5">Excellent</option>
</select>
JavaScript
$(function() {
$("#rating_simple").webwidget_rating_simple({
rating_star_length: '5',
rating_initial_value: '',
rating_function_name: '',
directory: 'rating-system/'
});
});
Thanks! Any help would be appreciated!