Answers for "open js file in html"

80

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

Browse Popular Code Answers by Language