How to show data in alert from other website to our php page using ajax.get() method?
Answers
Answered by
0
Here's the code I have so far:
<script type="text/javascript">
function returnwasset(){
alert('return sent');
$.ajax({
type: "POST",
url: "process.php",
data: somedata;
success function(){
//echo what the server sent back...
}
});
}
</script>
Similar questions