Answers for "each time button is pressed call new function"

4

run a function when a button has the onclick

<script>
function myFunction() {
  alert("ALERT THIS FUNCTION HAS RUNNED");
}
</script>
<button onclick="myFunction">click to run function</button>
Posted by: Guest on September-22-2020
0

how to make a button do different functions on different clicks

var callOne = true;

function one() {
   alert('Call one');
}

function two() {
   alert('Call two');
}

function call(){
   if(callOne) one();
  else two();
  callOne = !callOne;
}
Posted by: Guest on July-06-2020

Code answers related to "each time button is pressed call new function"

Code answers related to "Javascript"

Browse Popular Code Answers by Language