Answers for "js function call button"

3

button functions html

<script>
 function myFunction() {
   alert("ALERT");
 }
</script>
<button onclick="myFunction">Click</button>
Posted by: Guest on September-22-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language