
Basics of fetch api – Tutorial 9
fetch returns a promise. either pending or with data
fetch returns a promise. either pending or with data
Let’s get rid of XMLHttpRequest and its methods like open, send, etc. We now use fetch API to make ajax calls.
Hi, When you send a Ajax call, onload method we are using as call back function. correct?
In Ajax, we used JSON. What is JSON. Know it’s basics.
In Ajax call, the readyState property value is not enough to make a decision. We know something is received but what is received is also important. It matters wheater you…
For readyState property, we have 5 different values.
Developers often get confused between readyState and status. So here I go …
First create a message.txt file with single line text: “Hi I am from Ajax file located on server” Now in your html file ceate a H1 tag & a simple…
There are many rich extension in VS code editor ( a Best editor for any programming language). Currently I am using
AJAX = Asynchronous JavaScript And XML. Concept of Ajax is – Stop page reloading. Idea is — To use JS to make request to server and take XML data returned and…