function lookup(inputString) { $('#info').html(' '); if(inputString.length == 0) { // Hide the suggestion box. $('#suggestions').hide(); } else if (inputString.length > 1) { $.post("rpc.php", {queryString: ""+inputString+""}, function(data){ if(data.length > 0) { $('#suggestions').show(); $('#autoSuggestionsList').html(data); } else { $('#suggestions').hide(); } }); } else { $.post("rpc.php", {queryStart: ""+inputString+""}, function(data){ if(data.length > 0) { $('#suggestions').show(); $('#autoSuggestionsList').html(data); } else { $('#suggestions').hide(); } }); } } /* } suggesties opvragen en tonen */ /* informatie opvragen en invullen { */ function fill(thisValue) { if (thisValue.length > 0) { $.post("rpc.php", {getInfo: ""+thisValue+""}, function(data){ if(data.length >0) { $('#info').html(data + ""); } }); } $('#inputString').val(thisValue); setTimeout("$('#suggestions').hide();", 200); } /* } informatie opvragen en invullen */