Is there a way to set Jquery's Autocomplete HTTP submission method to POST instead of GET?
Probably better to pass it in with the source parameter rather than setting it globally like this:
$("#input").autocomplete({ source: function (request, response) { $.post("/AjaxPostURL", request, response); } });
2.1m questions
2.1m answers
60 comments
57.0k users