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
HBAR Price Prediction 2024-2025-2030-2040: Will Hedera Reach $10?
Skills and Training - MiHR | Mining Industry Human Resources Council
Hotels Near 625 Smith Avenue Nashville Tn 37203
Koopa Wrapper 1 Point 0
Craigslist Monterrey Ca
Main Moon Ilion Menu
Gamevault Agent
Women's Beauty Parlour Near Me
Hendersonville (Tennessee) – Travel guide at Wikivoyage
Ub Civil Engineering Flowsheet
Helloid Worthington Login
What is Cyber Big Game Hunting? - CrowdStrike
Current Time In Maryland
Dutch Bros San Angelo Tx
Cashtapp Atm Near Me
Best Forensic Pathology Careers + Salary Outlook | HealthGrad
Sni 35 Wiring Diagram
Hennens Chattanooga Dress Code
Bella Bodhi [Model] - Bio, Height, Body Stats, Family, Career and Net Worth 
MyCase Pricing | Start Your 10-Day Free Trial Today
Pioneer Library Overdrive
Speedstepper
Royalfh Obituaries Home
Free T33N Leaks
Shiny Flower Belinda
Restored Republic
2021 Tesla Model 3 Standard Range Pl electric for sale - Portland, OR - craigslist
What is Software Defined Networking (SDN)? - GeeksforGeeks
Lincoln Financial Field, section 110, row 4, home of Philadelphia Eagles, Temple Owls, page 1
Ripsi Terzian Instagram
How To Make Infinity On Calculator
Jambus - Definition, Beispiele, Merkmale, Wirkung
Palmadise Rv Lot
Tyler Sis 360 Boonville Mo
Timothy Kremchek Net Worth
Craigslist Greencastle
Wsbtv Fish And Game Report
Duff Tuff
The TBM 930 Is Another Daher Masterpiece
8 Ball Pool Unblocked Cool Math Games
814-747-6702
Exploring the Digital Marketplace: A Guide to Craigslist Miami
Dickdrainersx Jessica Marie
Squalicum Family Medicine
Chr Pop Pulse
Craigslist Anc Ak
Campaign Blacksmith Bench
Rocket Bot Royale Unblocked Games 66
Spongebob Meme Pic
Congressional hopeful Aisha Mills sees district as an economical model
Charlotte North Carolina Craigslist Pets
Arre St Wv Srj
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.