Pop-up not working - it's an iframe type, attempting to load a Google map. I've paired the code down to an absolute minimum. Using web developer toolbar in Firefox, I have confirmed that the linked js code is loading but clicking the link just navigates to the Google maps site.
What am I doing wrong?
<!DOCTYPE html>
<html lang="en" prefix="og: http://ogp.me/ns#">
<head>
<title>magnificPopup</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<link rel="stylesheet" href="js/magnific-popup.css" />
</head>
<body>
<div style="margin:50px;">
<a class="popup-gmaps" href="https://maps.google.com/maps?q=221B+Baker+Street,+London,+United+Kingdom&hl=en&t=v&hnear=221B+Baker+St,+London+NW1+6XE,+United+Kingdom">Open Google Map</a>
</div>
<script type="text/javascript">
$(document).ready(function () {
$('.popup-gmaps').magnificPopup({
disableOn: 700,
type: 'iframe',
removalDelay: 160,
preloader: false,
fixedContentPos: false
});
});
</script>
<script src="js/Zeptov1.js" type="text/javascript"></script>
<script src="js/jquery.magnific-popup.min.js" type="text/javascript"></script>
</body>
</html>