<input type = "button" onclick = "myfucntion()" value = "Display"> code example
Example: 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>