Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var opskrift_id = "<? echo $id; ?>";
- $('.star_rate').click(function(){
- var star_id = $(this).attr("star_num");
- $('.star_rate').removeClass("star_active");
- var temp_stars = star_id;
- while(temp_stars >= 0){
- temp_stars = temp_stars - 1;
- $($('.star_rate')[temp_stars]).addClass('star_active');
- $('#du_har_valgt').text("(" + star_id + " af 10)");
- }
- $.get("http://www.domæne.dk/vote_opskrift.php?id=" + opskrift_id + "&rating=" + star_id, function(data, status){
- $('#resultat_stem_box').show();
- $('#annuler_stemme').text("Skjul");
- $('#resultat_stem').html(data);
- $('#resultat_stem').fadeOut();
- $('#resultat_stem').fadeIn();
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment