Answers for "how to open javascript file in html"

130

calling javascript file in html

<script type="text/javascript" src="yourfile.js"></script>
Posted by: Guest on February-23-2020
2

how to open html file with javascript

// In my case, I used a button to activate this function:
function myFunction() {
    window.location.href = 'index.html';
}
Posted by: Guest on November-18-2020

Code answers related to "how to open javascript file in html"

Browse Popular Code Answers by Language