Your IP : 216.73.216.93


Current Path : /home/users/unlimited/www/foodbank.codeskitter.site/public/js/frontend/
Upload File :
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();
        }
    })
});