Guest User

Untitled

a guest
Mar 24th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. $('#buttonId').on('click', function () {
  2. counter = counter + 1;
  3. console.log('counter--->' + counter);
  4. if (counter % 3 == 0) {
  5. // apply new style
  6. console.log('multiple of 3--->' + counter);
  7. $('#buttonId').css('background-color', 'red');
  8. }
  9. });
Add Comment
Please, Sign In to add comment