iStriide Posted September 9, 2011 Share Posted September 9, 2011 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 More sharing options...
sunfighter Posted September 9, 2011 Share Posted September 9, 2011 Page updates are triggered by something, even if it's a timer. What needs to trigger this and WHY does it need to happen? Link to comment https://forums.phpfreaks.com/topic/246756-i-need-some-ajax-please/#findComment-1267366 Share on other sites More sharing options...
ZulfadlyAshBurn Posted September 9, 2011 Share Posted September 9, 2011 SetInterval and to run that function. but, you sever is goona die. Cause there would be alot of request. use ajax push engine instead. Link to comment https://forums.phpfreaks.com/topic/246756-i-need-some-ajax-please/#findComment-1267412 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.