var js_soci = { json_soci : function( request, response){ $.ajax({ url : 'http://unaproa.com/web/ricerca_soci/' , type : 'POST' , cache : false , dataType: "json" , data : { stringa_ricerca : $("#campo_ricerca_socio").val() } , success : function(data) { //alert(data) ; response(data) ; } }); } } $(function() { //alert('ciao') ; $("#campo_ricerca_socio").autocomplete({ source : js_soci.json_soci , minLength: 2 , select : function( event, ui ) { // alert('selezione avvenuta'); var id = ui.item.id ; var value = ui.item.value ; window.location = "http://unaproa.com/web/dettaglio_soci/" + id ; } }); });