Welcome Guest, Not a member yet? Register   Sign In
[solved]post in jquery ui's autocomplete
#5

[eluser]zrowcrypt[/eluser]
Tried doing that but not working Sad. Please help.





Working GET version:
====================

//define callback to format results


source: function(req, add){

pass request to server
$.getJSON("http://www.authorsite.com/demos/friends.php?callback=?", req, function(data) {
//create array for response objects
var suggestions = [];

//process response
$.each(data, function(i, val){
suggestions.push(val.name);
});

//pass array to callback
add(suggestions);
});
},

NOT WORKING my POST equivalent
=================================

source: function(req, add)
{
$.ajax({
url: '<?php echo site_url('ajax/mylist');?>',
dataType: 'json',
type: 'POST',
data: req,
success: function(data)
{
if(data.response =='true')
{
var suggestion = [];
$.each(data, function(i, val){ suggestions.push(val.name); });
add(suggestions);
}
}
})
},


Messages In This Thread
[solved]post in jquery ui's autocomplete - by El Forum - 09-17-2010, 09:34 PM
[solved]post in jquery ui's autocomplete - by El Forum - 09-18-2010, 02:06 AM
[solved]post in jquery ui's autocomplete - by El Forum - 09-18-2010, 11:40 AM
[solved]post in jquery ui's autocomplete - by El Forum - 09-20-2010, 08:16 PM
[solved]post in jquery ui's autocomplete - by El Forum - 10-25-2010, 05:39 AM
[solved]post in jquery ui's autocomplete - by El Forum - 10-25-2010, 06:40 AM
[solved]post in jquery ui's autocomplete - by El Forum - 10-25-2010, 07:57 AM
[solved]post in jquery ui's autocomplete - by El Forum - 10-25-2010, 05:00 PM
[solved]post in jquery ui's autocomplete - by El Forum - 10-25-2010, 05:33 PM
[solved]post in jquery ui's autocomplete - by El Forum - 11-08-2010, 03:30 AM



Theme © iAndrew 2016 - Forum software by © MyBB