0
How can i include both js and html file????
5 Respuestas
+ 2
<script src="..\[folder_name]\[file_name].js"> </script>
Using this you can point to an external javascript file
0
I want to made 2 diff. Pages for js and html.
0
Website
0
Yes, I know bt, I am trying to keep all the html part in one page and js part in another page. It may include through jquery "logincontent... " Bt dont know full procedure.
0
Put your JavaScript file link just before the closing tag of your body such as:
<!DOCTYPE html>
<html>
<body>
<!-- your JavaScript goes below-->
</body>
</html>