Submit your widget

Jquery rating system with beautiful stars

Created 13 years ago   Views 10383   downloads 2307    Author n/a
Jquery rating system with beautiful stars
View DemoDownload
124
Share |

jquery rating system with beautiful stars, appropriate for rating any online reviews.


Installation


Step1:include css and js files.


<script type="text/javascript" src="js/jquery.js"></script>
<link href="css/rating_star.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="js/rating_star.js"></script>


Step2:create textbox input or hidden input.


<input name="my_input" value="3" id="rating_star" type="text"> or <input name="my_input" value="3" id="rating_star" type="hidden">


Step3:add script.


<script language="javascript" type="text/javascript">
$(function() {
$("#rating_star").webwidget_rating_sex({
rating_star_length: '5',
rating_initial_value: '',
rating_function_name: '',
directory: 'images/'
});
});
</script>


parameter explanatory


rating_star_length: The star count
rating_initial_value: The initial value
rating_function_name: Function name response to click
directory: Star image directory

You might also like