Added jQuery 3.3.1
This commit is contained in:
parent
3587d0184f
commit
51238d47a1
|
|
@ -5,6 +5,7 @@
|
|||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>InstantChat</title>
|
||||
<link rel="stylesheet" href="css/style.css">
|
||||
<script src="js/jquery-3.3.1.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
|
|||
|
|
@ -0,0 +1,9 @@
|
|||
// Initialization
|
||||
function init() {
|
||||
console.log("Init...");
|
||||
}
|
||||
|
||||
// Run script after page is loaded
|
||||
$(function() {
|
||||
init();
|
||||
});
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue