JSONP or “JSON with padding” is a complement to the base JSON data format, a pattern of usage that allows a page to request data from a server in a different domain. As a solution to this problem, JSONP is an alternative to a more recent method called Cross-Origin Resource Sharing .
Comments closedCategory: Ajax
What is Ajax?
Ajax(shorthand for asynchronous JavaScript and XML) is a group of interrelated web development methods used on the client-side to create interactive web applications. With Ajax,web applications can retrieve data from the server asynchronously in the background without interfering with the display and behavior of the existing page. JavaScript and the XMLHttpRequest object provide a method for exchanging data asynchronously between browser and server to avoid full page reloads.
Comments closedCreating XMLHttpRequest Objects is one of the most important intial steps in making an ajax request. This article is on how to create an XMLHttpRequest Object. Learn more about the XHR Object.
Comments closedThis article briefly explains how to submit HTML form using AJAX. This article is intended for Ajax beginners. The word AJAX is the short form of asynchronous JavaScript and XML. Ajax is widely used in modern websites, web applications, etc. In this article, we assume the basic knowledge of javaScript and HTML.
Comments closed