I am currently experimenting with instafeed.js, but I am encountering difficulties getting it to load on a basic bootstrap page.
While everything else on my page loads successfully, this particular container remains empty without any Instagram code present.
I have downloaded the instafeed js folder and placed it in my root directory. The working file is located in the same folder as the instafeed folder, and the min.js file can be found inside.
Other than omitting my client ID for security reasons, what could potentially be causing this issue?
Below is the relevant code block:
<head>
<script type="text/javascript" src="instafeed.js-master/instafeed.min.js"></script>
</head>
<div class="container">
<div id="instafeed"></div>
</div>
<script type="text/javascript">
$(document).ready(function() {
var feed = new Instafeed({
clientId: 'myclientid',
limit: '4'
});
feed.run();
});
</script>