Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. <style>
  2. fa-star {
  3. color: rgba(112, 111, 111, 0.856);
  4. }
  5.  
  6. .fa-star:hover {
  7. color: #e2334c;
  8. }
  9.  
  10. .fa-star.selected {
  11. color: #001628;
  12. }
  13.  
  14. <script>
  15. $('.ratings_stars').click(function () {
  16. $('.ratings_stars').removeClass('selected'); // Removes the selected class from all of them
  17. $(this).addClass('selected');
  18. var rating = $(this).data('rating'); // Get the rating from the selected star
  19.  
  20. $('#rating').val(rating); // Set the value of the hidden rating form element
  21. });
  22.  
  23. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement