[Solved] Button don’t executes JS


First of all if you want that something would happen you need to write that in the function. You already wrote variables, but you did nothing with them, so nothing could happen.

Try this :

<p id="demo" onclick="myFunction()">Click me to change my HTML content (innerHTML).</p>

<script>
  function myFunction() {
    document.getElementById("demo").innerHTML = "Paragraph changed!";
  }
</script>

solved Button don’t executes JS