Nov 16 2008

Links for Sunday #4

If you’re new here, you may want to subscribe to my RSS feed. Thanks for visiting!
ASP.NET AJAX Control Toolkit
10 Essential Principles of the Javascript Masters
Useful Cheat Sheets for Web Designers
33 Most Beautiful Javascript and Flash Galleries
My Top 10 Source Code Search Engines
RSS Tutorial for Content Publishers and Webmasters
50+ Gorgeous Navigation Menus
MessageBox
Ten Web Development [...]

TAGS:
Aug 2 2008

Ajax using post

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 the below code
if(http.readyState == 4 || http.status == 200) {
alert(xmlHttp.responseText);
}
}
xmlHttp.send(parms);

    

[...]

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 [...]