Here is my current code:
$.ajax({
type: "POST"
, url: "first-script.php"
, data: {
dataPoint: dataValue
}
, success: function (dataPath) {
// Do stuff with dataPath
// Call another PHP script once done.
}
});
I am stuck at the Call another PHP script once done. part. How can I do that? Is it possible at all? Is there any alternate way?