AJAX Example



User Rating:  / 4
PoorBest 
Details

AJAX Example :

View source
<html>
<body>
 
<div id="myDiv"><h2>Let AJAX change this text</h2></div>
<button type="button" onclick="loadXMLDoc()">Change Content</button>
 
</body>
</html>


Next, add a <script> tag to the page's head section. The script section contains the loadXMLDoc() function:

View source
<head>
<script type="text/javascript">
function loadXMLDoc()
{
.... AJAX script goes here ...
}
</script>
</head>


You have no rights to post comments

   

Login  

   

     

© Developerpages