views:

793

answers:

2

Hello, Is there a way to Set Jquery's autocomplete Http submission method to POST instead of GET?

+2  A: 

Unfortunately, there is no option to the autocompleter that will allow you to set that. There is, however, a single place in the plugin code where the $.ajax function is called. There is no type option specified, which means that it will default to a GET request. You could modify the $.ajax call (which starts on line 361 of the latest version) to include a type option and set its value to "post":

$.ajax({ //line 361
    type: "post",
    ...
karim79
Thank you,works prefect.
Godfa
+1  A: 

You can use the

$.ajaxSetup( { type: "POST" } );

before the call to autocomplete, and it will override the ajax call on the page.

Schotime
This didn't work for me. Any tips?
Stefan Mai
lowercase "post" instead?
Schotime