Advertisement
Guest User

rogos

a guest
Nov 19th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. var click = 0;
  2. function ile(){
  3. click +=1;
  4. document.getElementById('abc').innerHTML = click+" razy";
  5. };
  6. function kolor(){
  7. if(document.getElementById('kolor1').style.backgroundColor == 'lime'){
  8. document.getElementById('kolor1').style.backgroundColor = 'pink';
  9. ile();
  10. }else{
  11. document.getElementById('kolor1').style.backgroundColor = 'lime';
  12. ile();
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement