Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. // the actual code
  2. $('#voyages').on('click', function() {
  3. if (continentOuvert == false) {
  4. $('#voyages i.fas.fa-arrow-up').show(500);
  5. $('#voyages i.fas.fa-arrow-down').hide();
  6. }
  7. });
  8.  
  9. // the functions I try to make
  10. function arrowUp() {
  11. $('this i.fas.fa-arrow-up').show(500);
  12. $('this i.fas.fa-arrow-down').hide();
  13. }
  14.  
  15. // or
  16. function arrowUp() {
  17. $(this + ' i.fas.fa-arrow-up').show(500);
  18. $(this + ' i.fas.fa-arrow-down').hide();
  19. }
  20.  
  21. $(this).find('i.fas.fa-arrow-up').show(500);
  22. $(this).find('i.fas.fa-arrow-down').hide();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement