I've run in to an interesting issue where I'm using a Tumblr static page and instafeedjs. When I'm editing the page Instafeed works fine. However, when I view the page outside of the editor the images don't load and the link won't take me to the instagram site. Here's code, but like I said, everything works fine in the editor.
<script type="text/javascript">
var feed = new Instafeed({
get: 'user',
userId: USER_ID,
accessToken: 'aTOKEN',
clientId: 'cID',
limit:4,
template: '<a href="{{link}}" target="_blank"><img src="{{image}}" /><div class="likes">♥ {{likes}}</div></a>'
});
feed.run();
</script>
Ok, I just got back to it, and as lharby suggested, it is in fact the use of the "template:" that causes the problem. Lots of thanks, now I just have to figure out a work around.
Thanks again,
...still think it's weird that it works in the editor... :^/