How to get last date of the month – javascript

May 16, 2011 by satz  
Filed under JavaScript, Scripts

The following function will return the last date of the month. This function is very much useful while calculating the last date of a particular month. The arguments passed into the function should be number.
Read more

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

« Previous PageNext Page »