Jump to content

I need some ajax please.


iStriide

Recommended Posts

I have this code and I want to make it where I don't have to click the button to make the page update. So how will I make it where I don't have to click the button to update the page and make it where it automatically refreshes?

 

Here's the code:

<html>
<head>
<script type="text/javascript">
function showCustomer(str)
{
var xmlhttp;    
if (str=="")
  {
  document.getElementById("txtHint").innerHTML="";
  return;
  }
if (window.XMLHttpRequest)
  {// code for IE7+, Firefox, Chrome, Opera, Safari
  xmlhttp=new XMLHttpRequest();
  }
else
  {// code for IE6, IE5
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
xmlhttp.onreadystatechange=function()
  {
  if (xmlhttp.readyState==4 && xmlhttp.status==200)
    {
    document.getElementById("txtHint").innerHTML=xmlhttp.responseText;
    }
  }
xmlhttp.open("GET","confirm.php?q=1",true);
xmlhttp.send();
}
</script>
</head>
<body>

<button value='1' onclick="showCustomer(this.value)">Update</button>

<br />
<div id="txtHint">Info will be listed here</div>

</body>
</html>

Link to comment
https://forums.phpfreaks.com/topic/246756-i-need-some-ajax-please/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.