Answers for "how to write external javascript"

8

git credentials

# this will store your credentials "forever"
git config --global credential.helper store
Posted by: Guest on June-09-2020
59

include script in html

<script type="text/javascript" src="/path/to/script.js"></script>
Posted by: Guest on July-17-2020
10

how to add script in html head

<script src="script.js" defer></script>

<!--just add defer attribute so script will execute at last-->
Posted by: Guest on August-21-2020
1

how to include external javascript in html

<script src="script.js">
Posted by: Guest on September-18-2020
1

how to write code in external javascript file

function myFunction() {

  document.getElementById("demo").innerHTML = "Paragraph changed.";

}
Posted by: Guest on May-25-2021

Code answers related to "how to write external javascript"

Browse Popular Code Answers by Language