I'm having a bit of a struggle with something that should be quite easy to do, yet i'm failing at it.
I'm trying to implement the Jquery Galleria Flickr plugin into this website: http://www.mathijsdelva.be/yury.
This is the code i have:
<script src="js/jquery-1.4.4.min.js" type="text/javascript"></script>
<script src="js/galleria.js" type="text/javascript"></script>
<script src="js/galleria.flickr.js" type="text/javascript"></script>
<script src="js/classic/galleria.classic.js"></script>
<script type="text/javascript">
var api_key = '22b0615cb0499c7a9f67e166c74b8d6d' // you must have a flickr API key
var flickr = new Galleria.Flickr(api_key); // initialize the plugin
flickr.getSet('72157623495372507', {
size: 'big',
description: false,
max: 100,
sort: 'date-posted-desc'
}, function(data) {
$('#flickrfeed').galleria({
data_source: data
});
});
</script>
I'm doing this just as the github galleria readme is telling me but it's just not working.
Can anyone please help me? it's probably something really stupid/small!
Mathijs