Link to home
Start Free TrialLog in
Avatar of John S.
John S.Flag for United States of America

asked on

Autocomplete with Jquery Question

I have a text field I am attaching Autocomplete to....

$( function() {
	  // source: "search_invoice_auto"
    $( "#search_quotes" ).autocomplete({
     		source: [ "1144987495", "1144985173", "1144984411" ]
    	});
  } );

Open in new window


I want to POST the values to the url: search_invoice_auto, which will return the appropriate JSON. But I can't figure out how to do this.  The above example works, of course, with the sample data, but I need the data from the url.

Can someone post an example please?
ASKER CERTIFIED SOLUTION
Avatar of Leonidas Dosas
Leonidas Dosas
Flag of Greece image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of John S.

ASKER

Perfect! Thanks so much.