W3Schools.com (2024)

A common use of JSON is to read data from a web server, and display the data in a web page.

This chapter will teach you, in 4 easy steps, how to read JSON data, using XMLHttp.

JSON Example

This example reads a menu from myTutorials.txt, and displays the menu in a web page:

JSON Example

<div id="id01"></div>

<script>
var xmlhttp = new XMLHttpRequest();
var url = "myTutorials.txt";

xmlhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
var myArr = JSON.parse(this.responseText);
myFunction(myArr);
}
};
xmlhttp.open("GET", url, true);
xmlhttp.send();

function myFunction(arr) {
var out = "";
var i;
for(i = 0; i < arr.length; i++) {
out += '<a href="' + arr[i].url + '">' +
arr[i].display + '</a><br>';
}
document.getElementById("id01").innerHTML = out;
}
</script>

Try it Yourself »

Example Explained

1: Create an array of objects.

Use an array literal to declare an array ofobjects.

Give each object two properties: display and url.

Name the array myArray:

myArray

var myArray = [
{
"display": "JavaScript Tutorial",
"url": "https://www.w3schools.com/js/default.asp"
},
{
"display": "HTML Tutorial",
"url": "https://www.w3schools.com/html/default.asp"
},
{
"display": "CSS Tutorial",
"url": "https://www.w3schools.com/css/default.asp"
}
]

2: Create a JavaScript function to display the array.

Create a function myFunction() that loops the array objects, and display the content as HTML links:

myFunction()

function myFunction(arr) {
var out = "";
var i;
for(i = 0; i < arr.length; i++) {
out += '<a href="' + arr[i].url + '">' + arr[i].display + '</a><br>';
}
document.getElementById("id01").innerHTML = out;
}

Call myFunction() with myArray as argument:

Example

myFunction(myArray);

Try it Yourself »

3: Create a text file

Put the array literal in a file named myTutorials.txt:

myTutorials.txt

[
{
"display": "JavaScript Tutorial",
"url": "https://www.w3schools.com/js/default.asp"
},
{
"display": "HTML Tutorial",
"url": "https://www.w3schools.com/html/default.asp"
},
{
"display": "CSS Tutorial",
"url": "https://www.w3schools.com/css/default.asp"
}
]

Look at the file »

4: Read the text file with an XMLHttpRequest

Write an XMLHttpRequest to read the text file, and usemyFunction() to display the array:

XMLHttpRequest

var xmlhttp = new XMLHttpRequest();
var url = "myTutorials.txt";

xmlhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
var myArr = JSON.parse(this.responseText);
myFunction(myArr);
}
};

xmlhttp.open("GET", url, true);
xmlhttp.send();

Try it Yourself »


W3schools Pathfinder

Track your progress - it's free!

W3Schools.com (2024)
Top Articles
Monero: average number of daily transactions 2020 | Statista
The Best/Worst States for You to Live Off the Grid in 2024
Rosy Boa Snake — Turtle Bay
Chelsea player who left on a free is now worth more than Palmer & Caicedo
50 Meowbahh Fun Facts: Net Worth, Age, Birthday, Face Reveal, YouTube Earnings, Girlfriend, Doxxed, Discord, Fanart, TikTok, Instagram, Etc
Aiken County government, school officials promote penny tax in North Augusta
Fnv Turbo
Nyuonsite
Western Razor David Angelo Net Worth
Fcs Teamehub
Charmeck Arrest Inquiry
Pvschools Infinite Campus
Jesus Calling Oct 27
065106619
Ms Rabbit 305
SF bay area cars & trucks "chevrolet 50" - craigslist
Vigoro Mulch Safe For Dogs
Christina Steele And Nathaniel Hadley Novel
MLB power rankings: Red-hot Chicago Cubs power into September, NL wild-card race
The best firm mattress 2024, approved by sleep experts
Www.publicsurplus.com Motor Pool
Like Some Annoyed Drivers Wsj Crossword
Kingdom Tattoo Ithaca Mi
Vernon Dursley To Harry Potter Nyt Crossword
Dove Cremation Services Topeka Ks
Hdmovie2 Sbs
Nk 1399
Cor Triatriatum: Background, Pathophysiology, Epidemiology
Maisons près d'une ville - Štanga - Location de vacances à proximité d'une ville - Štanga | Résultats 201
Riverstock Apartments Photos
Kqelwaob
lol Did he score on me ?
Miss America Voy Board
Sun Haven Pufferfish
Magicseaweed Capitola
KM to M (Kilometer to Meter) Converter, 1 km is 1000 m
Priscilla 2023 Showtimes Near Consolidated Theatres Ward With Titan Luxe
Bella Thorne Bikini Uncensored
Frommer's Philadelphia &amp; the Amish Country (2007) (Frommer's Complete) - PDF Free Download
San Bernardino Pick A Part Inventory
Cocaine Bear Showtimes Near Cinemark Hollywood Movies 20
Kenner And Stevens Funeral Home
Panolian Batesville Ms Obituaries 2022
Booknet.com Contract Marriage 2
Sapphire Pine Grove
Craigslist Free Cats Near Me
Wera13X
Otter Bustr
Ssss Steakhouse Menu
8663831604
Fahrpläne, Preise und Anbieter von Bookaway
Latest Posts
Article information

Author: Msgr. Benton Quitzon

Last Updated:

Views: 6076

Rating: 4.2 / 5 (43 voted)

Reviews: 82% of readers found this page helpful

Author information

Name: Msgr. Benton Quitzon

Birthday: 2001-08-13

Address: 96487 Kris Cliff, Teresiafurt, WI 95201

Phone: +9418513585781

Job: Senior Designer

Hobby: Calligraphy, Rowing, Vacation, Geocaching, Web surfing, Electronics, Electronics

Introduction: My name is Msgr. Benton Quitzon, I am a comfortable, charming, thankful, happy, adventurous, handsome, precious person who loves writing and wants to share my knowledge and understanding with you.