Web Development
ajax.txt
Associated article: Ajax: Asynchronous JavaScript XML
Tags: Web Development JVM Languages Design
Published source code and related files accompanying the article by Eric J. Bruno in which he examines Ajax, short for "Asynchronous JavaScript and XML," lets you create dynamic Web pages. Also see AJAX.ZIP.
Ajax: Asynchronous JavaScript and XML
by Eric J. Bruno
Listing One
if (window.addEventListener)
{
window.addEventListener("load", init, false);
}
else if (window.attachEvent)
{
window.attachEvent("onload", init);
}
else
{
window.onload = init;
}
function init()
{
DWREngine.setErrorHandler(function(...


