Aug 2 2008

Ajax using post

If you’re new here, you may want to subscribe to my RSS feed. Thanks for visiting!Here is a sample code which uses POST method in XMLHTTP request.

var url="ajaxpage.php";
var parms="name=bobby"; //Parameters
xmlHttp.open("POST", url, true);
xmlHttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xmlHttp.setRequestHeader("Content-length", parms.length);
xmlHttp.setRequestHeader("Connection", "close");
xmlHttp.onreadystatechange = function() {
//On ready state execute [...]

TAGS: ,
Aug 1 2008

5 Ajax calendars you shouldn’t miss

Vista Like Ajax calendar : The Vista-like Ajax Calendar (vlaCalendar) version 2 is a unobtrusive  web version of the slick and profound Windows Vista taskbar calendar, by using the mootools javascript framework, AJAX, XHTML, CSS and PHP. Read more here

Aeron Calendar : Calendar is a Javascript class that adds accessible and unobtrusive date-pickers to your [...]

Jul 14 2008

Text editors for code geeks

What is the fun in being a geek if what you do can be easily understood by others. As geeks we should always do things complicated
Here are few free text editors which are good for writing codes.

Intype : Intype is a really good lightweight text editor for Windows. The interface of Intype is [...]