Advertisement
sanjiisan

Untitled

May 28th, 2017
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. $(function () {
  2. var buttons = $('.hero-buttons').find('button');
  3.  
  4. buttons.first().on('click', function () {
  5. console.log('Kliknięto mnie@!');
  6. });
  7.  
  8.  
  9. buttons.eq(1).one('click', function () {
  10. console.log('Kliknięto mnie ale drugi raz sie nie dam');
  11. });
  12.  
  13. buttons.last().one('click', function () {
  14. buttons.off();
  15. });
  16. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement