I'm attempting to create a flipbook using the turn.js library. Below is the code that I am using, however it doesn't seem to work. It is currently operating correctly on jsfiddle as shown here [text]http://jsfiddle.net/xd7sh59p/
Where am I going wrong?
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<div id="flipbook">
<div class="hard"> Turn.js </div>
<div class="hard"></div>
<div> Page 1 </div>
<div> Page 2 </div>
<div> Page 3 </div>
<div> Page 4 </div>
<div class="hard"></div>
<div class="hard"></div>
</div>
<script type="text/javascript">
$("#flipbook").turn({
width: 400,
height: 300,
autoCenter: true
});
</script>
</body>
</html> ```
Read code comments