| Current Path : /home/users/unlimited/www/foodbank.codeskitter.site/public/js/frontend/ |
| Current File : /home/users/unlimited/www/foodbank.codeskitter.site/public/js/frontend/StarRating.js |
/**
*
* You can write your JS code here, DO NOT touch the default style file
* because it will make it harder for you to update.
*
*/
"use strict";
$(document).ready(function() {
$('input:radio').change(function(){
var star = $('input:checked').val();
if(star>0){
$('#reviewID').show();
}else {
$('#reviewID').hide();
}
})
});