manarak Posted March 23, 2010 Share Posted March 23, 2010 Hello all, I have been trying and researching for hours now, and I can't get the following code to work, it is so frustrating: <html> <head> <script language="JavaScript" type="text/javascript"> <!-- function Callphp(notifurl) { var xhReq = new XMLHttpRequest(); xhReq.open("GET", notifurl, false); xhReq.send(null); } //--> </script> </head> <body> <input type="button" value="test" onClick="Callphp('http://www.test.com/test.php'); window.open('http://www.test.com/blabla.php', 'chat', 'width=650,height=600,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,copyh istory=no,resizable=no')"> </body> </html> when the button is clicked, absolutely nothing happens. The PHP file doesn't even get called, I don't know why. The error console reports nothing err... help? Link to comment https://forums.phpfreaks.com/topic/196219-ajax-xmlhttp-request-problem/ Share on other sites More sharing options...
manarak Posted March 23, 2010 Author Share Posted March 23, 2010 solved! Link to comment https://forums.phpfreaks.com/topic/196219-ajax-xmlhttp-request-problem/#findComment-1030442 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.