Jump to content

AJAX xmlhttp request problem


manarak

Recommended Posts

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

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.