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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.