Well basically what the title says, when making an AJAX request with JavaScript. Does the method, i.e. GET / POST, need to be upper case? Thanks in advance.
Edit: Even a yes or no will suffice.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can read about it at http://www.w3.org/TR/XMLHttpRequest/#the-open-method
I quote
which means it will automatically convert it to upper case on its own ..
So it seems to have some significance (preferring uppercase), and i would suggest you use uppercase just to avoid implementation flaws (improbable).