Is it possible to detect the HTTP request method (e.g. GET or POST) of a page from JavaScript? If so, how?
|
feedback
|
|
I don't believe so. If you need this information, I suggest including a For example, with PHP:
| |||
|
feedback
|
|
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 | |||
|
feedback
|
|
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. | |||
|
feedback
|
|
You can check the page's referrer:
If it's the same page it's quite likely that the user submitted the form. Of course this requires
| ||||
|
feedback
|