Not sure why the popup is not working.
Console says:
Uncaught TypeError: Object [object Object] has no method 'magnificPopup' index.html:17
Here's my code:
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="css/magnific-popup.css" />
<script src="js/magnific-popup.js"></script>
<script src="js/jquery.min.js"></script>
</head>
<body>
<a class="demo" href="http://lorempixel.com/50/50">Demo</a>
<script>
$(document).ready(function() {
$('.demo').magnificPopup({
type: "image",
});
});
</script>
</body>
</html>