/*global wc_single_product_params, PhotoSwipe, PhotoSwipeUI_Default */ jQuery( function( $ ) { $( 'body' ) // Star ratings for comments .on( 'alanah_init', '#rating', function() { $( '#rating' ) .hide() .prev( '.stars' ) .html( '\ \ \ \ \ \ ' ); } ) .on( 'mouseover', '#respond p.stars a', function() { var $star = $( this ); $star.prevAll().addBack().css( 'color', '#EE9D16' ); } ) .on( 'mouseleave', '#respond p.stars a', function() { var $star = $( this ); $star.prevAll().addBack().css( 'color', '' ); $star.prevAll().addBack().removeAttr( 'style' ); } ) .on( 'click', '#respond p.stars a', function() { var $star = $( this ), $rating = $( this ).closest( '#respond' ).find( '#rating' ), $container = $( this ).closest( '.stars' ); $rating.val( $star.data( 'val' ) ); $star.siblings( 'a' ).removeClass( 'active' ); $star.siblings( 'a' ).removeClass( 'rate' ); $star.addClass( 'active' ); $star.prevAll().addBack().addClass( 'rate' ); $container.addClass( 'selected' ); return false; } ); // Init Tabs and Star Ratings $( '#rating' ).trigger( 'alanah_init' ); } );