Answers for "html in script tag"

1

script tag with type html

<script type="text/javascript">
  /*Detects that you are using javascript or text*/
</script>
Posted by: Guest on September-22-2020
3

script tag in html

<script>
  // Write JS here
</script>

<script src="link/to/js/file.js"></script>
Posted by: Guest on October-20-2020
0

how to enter javascript in html

<script type="text/javascript">
  alert("This alert box was called with the onload event");
</script>
Posted by: Guest on August-19-2020
-3

how to use script tag

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

Browse Popular Code Answers by Language