I am learning the JQuery Get method. I start up a Python HTTP server:
(just typing command \"Python -m SimpleHTTPServer\").
It\'s fine to t
Looks like a CORS preflight request (https://developer.mozilla.org/En/HTTP_access_control)
I guess you are trying to access to a different domain/port. Depending on the request, the browser will send a preflight request (an OPTION request) to know if the server accepts the set of Headers or HTTP method you wanted to send in the first place. If the server responds OK, the browser will send the real request.
Looks like that Python server doesn't implement OPTIONs requests, hence the error.
Tip: Network inspection tools (tcpdump, wireshark, ngrep...) help a lot when dealing with http requests and/or network errors.