Using Ajax and XML - AJAX Sample Program ~ Ajax Training, Learn Ajax Video Tutorials Online, Ajax Examples
Ajax Training, Learn Ajax Video Tutorials Online, Ajax Examples: Using Ajax and XML - AJAX Sample Program

Using Ajax and XML - AJAX Sample Program

//Run This at http://localhost/ajax/guests.html

<html>
<head>

<title>Using Ajax and XML</title>

<script language = "javascript">

function getGuest()
{
var mozillaFlag = false;
var XMLHttpRequestObject = false;

if (window.XMLHttpRequest) {
XMLHttpRequestObject = new XMLHttpRequest();
XMLHttpRequestObject.overrideMimeType("text/xml");
mozillaFlag = true;
} else if (window.ActiveXObject) {
XMLHttpRequestObject = new
ActiveXObject("Microsoft.XMLHTTP");
}

if(XMLHttpRequestObject) {
XMLHttpRequestObject.open("GET", "guests.xml", true);

XMLHttpRequestObject.onreadystatechange = function()
{
if (XMLHttpRequestObject.readyState == 4 &&
XMLHttpRequestObject.status == 200) {
var xmlDocument = XMLHttpRequestObject.responseXML;
if(mozillaFlag){
removeWhitespace(xmlDocument);
}
displayGuest(xmlDocument);
}
}

XMLHttpRequestObject.send(null);
}
}

function displayGuest (xmldoc)
{
var eventsNode, eventNode, peopleNode;
var firstNameNode, lastNameNode, displayText;

eventsNode = xmldoc.documentElement;
eventNode = eventsNode.firstChild;
peopleNode = eventNode.lastChild;
personNode = peopleNode.lastChild;
firstNameNode = personNode.firstChild;
lastNameNode = firstNameNode.nextSibling;

displayText = "The celebrity guest was " +
firstNameNode.firstChild.nodeValue + ' '
+ lastNameNode.firstChild.nodeValue;

var target = document.getElementById("targetDiv");
target.innerHTML=displayText;
}

function removeWhitespace(xml)
{
var loopIndex;

for (loopIndex = 0; loopIndex < xml.childNodes.length;
loopIndex++) {

var currentNode = xml.childNodes[loopIndex];

if (currentNode.nodeType == 1) {
removeWhitespace(currentNode);
}

if (((/^\s+$/.test(currentNode.nodeValue))) &&
(currentNode.nodeType == 3)) {
xml.removeChild(xml.childNodes[loopIndex--]);
}
}
}
</script>

</head>

<body>

<h1>Using Ajax and XML</h1>

<form>
<input type = "button" value = "Get the celebrity guest"
onclick = "getGuest()">
</form>

<div id="targetDiv" width =100 height=100>
Who was the celebrity guest?
</div>

</body>

</html>

// XML File - guests.xml

<?xml version="1.0"?>
<events>
<event type="informal">
<event_title>15th award ceremony</event_title>
<event_number>1207</event_number>
<subject>gala event</subject>
<date>7/4/2006</date>
<people>
<person attendance="present">
<first_name>Sam</first_name>
<last_name>Edwards</last_name>
</person>
<person attendance="absent">
<first_name>Sally</first_name>
<last_name>Jackson</last_name>
</person>
<person attendance="present">
<first_name>Cary</first_name>
<last_name>Grant</last_name>
</person>
</people>
</event>
</events>

Related Posts by Categories

0 comments:

Useful Links on Adobe Flex

Your Ad Here

Latest Books on Adobe Flex