Advertisement
Guest User

Untitled

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