﻿
jQuery(function() {
    jQuery("#stars-wrapper2").stars({
        cancelShow: false,
        inputType: "select",
        callback: function(ui, type, value) {
            var recipeId = jQuery("#vote_recipeid").val();
            jQuery.get("Handlers/RateRecipe.ashx?rid=" + recipeId + "&stars=" + value, function(data) {
                jQuery(".submitVote").html('<p>Your rating has been submitted. Thank You!</p>');
            });
        }
    });
});
