Advertisement
Guest User

Untitled

a guest
Apr 8th, 2020
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script>
  2. $(function() {
  3.  
  4.   $('.list-group-item').on('click', function() {
  5.     $('.fas', this)
  6.       .toggleClass('fa-angle-right')
  7.       .toggleClass('fa-angle-down');
  8.   });
  9.  
  10. });
  11. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement