Skip to content

Instantly share code, notes, and snippets.

@juhahinkula
Last active January 28, 2019 15:09
Show Gist options
  • Save juhahinkula/925542ab912427e775c7e391ac2ec30e to your computer and use it in GitHub Desktop.
Save juhahinkula/925542ab912427e775c7e391ac2ec30e to your computer and use it in GitHub Desktop.
Jquery starter template for the lessons
<!DOCTYPE html>
<html>
<head>
<title>Using jquery</title>
<meta charset="utf-8">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
</head>
<body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<script>
$(document).ready(function() {
// Insert your code here
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment