Answers for "how to apply fonction on specific button js"

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
7

onclick a tag

<a href='http://www.google.com' onclick='return check()'>check</a>

<script type='text/javascript'>
function check() {
    return false;
}
</script>
Posted by: Guest on March-05-2020

Code answers related to "how to apply fonction on specific button js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language