Answers for "html include html from external file in javascript"

130

calling javascript file in html

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

Simple example of using external file javascript in html

<html>  
<head>  
<meta charset="utf-8">  
<title>Softhunt.net</title>  
</head>  
<body>  
<form>  
<a href="#" onclick="display()">Click Me</a>/>  
</form>  
<script src="index.js">  
</script>  
</body>  
</html>
Posted by: Guest on April-09-2022

Code answers related to "html include html from external file in javascript"

Browse Popular Code Answers by Language