Αναζήτηση

Saturday, May 12, 2012

AJAX Example

AJAX Example :


<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:

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

No comments:

Post a Comment