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.
Comments closedAuthor: admin
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 closedWhat 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 closedThis article explains how to load external javascript files after the page is loaded. This article will be helpful to improve the page load speed.
Comments closedjQuery.browser is one of the properties of the global jQuery Object. The property “$.browser” or “jQuery.browser” enables to detect which web browser is accessing the page. It is very useful while in need of serving unique contents for different browsers.
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 closedCSS Box model Explained
The knowledge of CSS box model is very much important for anyone who aspire to learn CSS or HTML. What is CSS box model is frequent question among the newbie web developers.
According to the W3C candidate recommendation, the CSS box model describes the rectangular boxes that are generated for elements in the document tree and laid out according to the visual formatting model.