Add new items to array – JavaScript
June 27, 2011 by satz
Filed under JavaScript, Scripts
Add new items to array – JavaScript
This article shows how to add new items to an array. To add new items to an array, you need to use .push() method. The push() method adds new elements to the end of an array. Below is the syntax to use .push() method. Read more
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
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


