Skip to content
This repository has been archived by the owner on May 3, 2021. It is now read-only.

Commit

Permalink
Merge pull request #40 from Pustur/remove-jquery-reference
Browse files Browse the repository at this point in the history
Remove jQuery reference in example 7
  • Loading branch information
jsanahuja committed Sep 8, 2020
2 parents 514c379 + 8e18591 commit 8284950
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ <h3>Example 7: Don't either like our template?</h3>
new InstagramFeed({
'username': 'instagram',
'callback': function(data){
$('#jsonHere').html(JSON.stringify(data, null, 2));
document.getElementById("jsonHere").innerHTML = JSON.stringify(data, null, 2);
}
});
})();
Expand Down

0 comments on commit 8284950

Please sign in to comment.