Answers for "how to use html in javascript"

10

javascript with html

// this how add javascript file in html !!


<script type="text/javascript" src="yourJavascript.js"></script>
Posted by: Guest on May-31-2021
1

how to use js in html

<script>
  function alert () {
    alert("Javascript has started");
  }
</script>
Posted by: Guest on September-08-2021
-3

how to use script tag

<script>
 document.getElementById("id").innerText = ("");
</script>
Posted by: Guest on September-22-2020

Code answers related to "how to use html in javascript"

Browse Popular Code Answers by Language