i have this code:
net.requestXHR = function() {
this.xhr = null;
if(window.XMLHttpRequest === undefined) {
window.XMLHttpRequest = function()
Answer:
Your browser is initiating a PreFlight OPTIONS request.
Why: Because your request is not a simple request.
Why it is not a simple request: Because of "Content-Type" = "application/json".
Solution: Try to use either of below content types :