Is it possible to detect the HTTP request method (e.g. GET or POST) of a page from JavaScript? If so, how?
|
|
|
|
|
|
|
In a word - No |
||
|
|
|
|
I don't believe so. If you need this information, I suggest including a For example, with PHP:
|
||
|
|
|
|
You cant do this for a normal post/get however you can get to this info if you use an xmlhttp call and use the getResponseHeader |
||
|
|
|
|
If you need this functionality, have the server detect what method was used and then modify something in the DOM that you can then read out later. |
||
|
|
