Guest User

Untitled

a guest
Apr 20th, 2018
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. var totalCount = 0;
  2. var maxCount = 4;
  3. var highlightColor = '#f00';
  4.  
  5. function change(e)
  6. {
  7. if (totalCount < maxCount || e.checked == false)
  8. {
  9. if (e.checked == true)
  10. {
  11. totalCount++;
  12. e.parentNode.style.backgroundColor = highlightColor;
  13. } else {
  14. totalCount--;
  15. e.parentNode.style.backgroundColor = '';
  16. }
  17. } else {
  18. alert('You have already selected the maximum number: ' + maxCount);
  19. e.checked = false;
  20. }
Add Comment
Please, Sign In to add comment