I got this code from W3 schools AJAX example but couldn't figure out how to use a link....
CODE
<html>
<head>
<script type="text/javascript">
function loadXMLDoc(url)
{
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.open("GET",url,false);
xmlhttp.send(null);
document.getElementById('test').innerHTML=xmlhttp.responseText;
}
</script>
</head>
<body>
<div id="test">
<h2>Let AJAX change this text</h2>
</div>
<button type="button" onclick="loadXMLDoc('test1.html')">Click Me</button>
<button type="button" onclick="loadXMLDoc('test2.html')">Click Me</button>
</body>
</html>
<head>
<script type="text/javascript">
function loadXMLDoc(url)
{
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.open("GET",url,false);
xmlhttp.send(null);
document.getElementById('test').innerHTML=xmlhttp.responseText;
}
</script>
</head>
<body>
<div id="test">
<h2>Let AJAX change this text</h2>
</div>
<button type="button" onclick="loadXMLDoc('test1.html')">Click Me</button>
<button type="button" onclick="loadXMLDoc('test2.html')">Click Me</button>
</body>
</html>
Thanks in advance for your help......
