Overview
Use GET rather than POST to collate headers and data.
Use GET rather than POST to collate headers and data.
When using the XMLHttpRequest object, the browser implements POST in two steps:
It is better to use GET instead of POST since GET sends the headers and the data together (unless there are many cookies). IE's maximum URL length is 2 KB, so if you are sending more than this amount of data you may not be able to use GET.