bravo14 0 Posted January 13 Share Posted January 13 Hi I am trying to pass 2 variables to a URL using typeahead, but the URL that it gerjneates is incorrectly formatted. The code I am using on the function is $('#txtLocation').typeahead({ source: function (query, process) { var country = $('#txtCountry').val(); var url = query + '&c='+country; //var uri = encodeURI(url); //alert(uri); return $.get('ajax/search_locations.php', { query: encodeURI(url) }, function (data) { data = $.parseJSON(data); return process(data); }); }, //showHintOnFocus:'all' }); The URL in the debugger is /ajax/search_locations.php?query=b%26c%3DUnited%2520Kingdom it should be /ajax/search_locations.php?query=b&c=United%2520Kingdom Any help or pointers on where I am going wrong would be fantastic Quote Link to post Share on other sites
requinix 962 Posted January 13 Share Posted January 13 { query: encodeURI(url) } That is the place that lists out the values to pass. You are only passing one because you crammed the query+c+country into the value. Keep the "query" being the query and add a "c" for the country. Quote Link to post Share on other sites
bravo14 0 Posted January 13 Author Share Posted January 13 I have added the &c='+country that is where the problem is occurring, in this line var url = query + '&c='+country; Quote Link to post Share on other sites
requinix 962 Posted January 13 Share Posted January 13 Yeah. And I'm saying don't do that. It doesn't work. It's incorrect. Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.