Cross Domain Ajax Requests – JSONP example

May 4, 2011 by satz  
Filed under Ajax, Scripts

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 . Read more

Ajax concepts revealed – History

May 4, 2011 by satz  
Filed under Ajax, Scripts

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. Read more

How to create XMLHttpRequest Object

May 18, 2010 by satz  
Filed under Ajax, Scripts

Creating 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. Read more

Next Page »