Skip to content

Instantly share code, notes, and snippets.

@Fobiya
Created January 25, 2019 08:43
Show Gist options
  • Save Fobiya/8e2e9218c041d4a785914d7d4cc5f5e2 to your computer and use it in GitHub Desktop.
Save Fobiya/8e2e9218c041d4a785914d7d4cc5f5e2 to your computer and use it in GitHub Desktop.
json
<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<script>
$.getJSON('https://', function(data) {
var output="";
for (var i in data.user) {
output+="<p>"+ data.user[i].name+"</p>";
}
document.getElementById("1poo").innerHTML=output;
});
</script>
<ul id='1poo'></ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment