and thanks in advance for any help.
I'm new into jQuerys and have been teaching myself through the help of GitHub. I have a very simple scroll-snap code written out, however, the actual snapping part is not working. I will paste my code right below:
<!DOCTYPE html>
<html>
<center>
<head>
<link href="my.css" rel="stylesheet" type="css/text">
<meta name="robots" CONTENT="all">
<title></title>
<script type="text/JavaScript" src="/htdocs/jQuery/jquery-1.12.1.min.js"> </script>
<script type="text/JavaScript" src="/htdocs/jQuery/jquery.panelSnap.js"> </script>
<script>
jQuery(function($) {
$('body').panelSnap();
});
</script>
</head>
<body>
<div>
<div class="page one">
<div class="inside">
<div>TrynaMatch?</div>
</div>
</div>
<div class="page two">
<div class="inside">
</div>
</div>
<div class="page three">
<div class="inside">
</div>
</div>
<div class="page four">
<div class="inside">
</div>
</div>
</div>
</center>
</body>
</div>
</html> `
Please help me with any tips. I am a complete beginner so feel free to offer any criticism. Thanks again!