Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
Explain Ajax callback function.
Home
AJAX
Explain Ajax callback function.
0
votes
asked
Aug 8, 2023
in
AJAX
by
sharadyadav1986
Explain Ajax callback function.
ajaxcallbackfunction
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Aug 8, 2023
by
sharadyadav1986
Following are steps carried out during Ajax callback:
Client browser sends a request message to Server.
The user is free to do anything other than waiting for the response as the request call is asynchronous in nature.
The server receives the message and processes the page for which Ajax callback is called.
The response is sent to the browser as a JavaScript code string that gets executed in the browser.
...