Alright, trying to use fancybox to load an image and it just isn't working. Anything obvious I'm missing here?
<!DOCTYPE html>
<html>
<head>
<title>fancybox test</title>
<script type="text/javascript" src="http://code.jquery.com/jquery-2.1.1.min.js"></script>
<link rel="stylesheet" href="http://cdn.jsdelivr.net/fancybox/2.1.5/jquery.fancybox.min.css"></link>
<script type="text/javascript" src="http://cdn.jsdelivr.net/fancybox/2.1.5/jquery.fancybox.min.js"></script>
</head>
<body>
<script type="text/javascript">
$(function () {
$.fancybox.open([
{
href: "http://s3.amazonaws.com/media.vast.com/carstory/upload-745916ec-fcf9-4289-b2ff-4606f4cc521c",
title: 'test'
}
]);
});
</script>
</body>
</html>