Answers for "run function with onclick"

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

Code answers related to "run function with onclick"

Code answers related to "Javascript"

Browse Popular Code Answers by Language