Google News
logo
Ajax - Interview Questions
Which request is better, Get or Post ?
AJAX requests should use an HTTP GET request where the data does not change for a given URL requested.

An HTTP POST should be used when state is updated on the server. This is highly recommended for a consistent web application architecture.
Advertisement