What is Jsonp? Difference between Json and Jsonp ?
JSONP
Ask by Anonymous User
Updated 03 Jul 2018
thanks for this
JSONP :
JSONP means JSON with Padding.
JSONP does not use the XMLHttpRequest object.
JSONP uses the <script> tag instead.
Requesting an external script from another domain does not have this problem.
JSONP uses this advantage, and request files using the script tag instead of the XMLHttpRequest object.
Syntax:
Server File :
Callback Function:
function clickButton() {var s = document.createElement("script");
s.src = "jsonp_demo_db.php?callback=myDisplayFunction";
document.body.appendChild(s);
}