Simpltry Rating Control

simpltry_widget="rating"

This is a rating control similar to netflix and every other cool site on the internet. You build it by creating a container div and then as many divs inside the container as you want ratings. So in the following example we want 5 pluses so we have 5 divs inside the container. It is your responsibility to style the divs to look like a rater. here is the style sheet I used along with the unhighlighted and highlighted images if you decide to use these images you must buy a license from twotiny although at the time of this writing I can't find the page where I bought them so . . .

1
2
3
4
5

example markup:

<div class="rater clear" 
    simpltry_widget="rating" 
    simpltry_options="selected: 2, 
                      onSelect:function(rating){alert('you selected ' + rating);}">
	<div>1</div>
	<div>2</div>
	<div>3</div>
	<div>4</div>
	<div>5</div>
</div>