An issue has arisen with an error message
{"readyState":0,"status":0,"statusText":"NetworkError: Failed to execute 'send' on 'XMLHttpRequest': Failed to load...
This problem occurs when the following code is executed
$.ajax({
url: "http://swingd.achievedigital.com/action/user_signin.php",
dataType: 'json',
crossDomain: true,
method: 'POST',
async: false,
data: pstr,
success: function(data)
Switching
Changing the setting from Async: false to true triggers this error:
{"readyState":0,"responseText":"","status":0,"statusText":"error"}--"error"--""
If anyone has any suggestions or solutions, they would be greatly appreciated.