1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
<script type="text/javascript">
function lookup(inputString) {
if(inputString.length == 0) {
// Hide the suggestion box.
jQuery.noConflict();
(function($){
$('#suggestions').hide();
})(jQuery);
} else {
jQuery.noConflict();
(function($){
$.post("rpc.php", {queryString: ""+inputString+""}, function(data){
if(data.length >0) {
$('#suggestions').show();
$('#autoSuggestionsList').html(data);
}
});
}
} // lookup
})();
function fill(thisValue) {
jQuery.noConflict();
(function($){
$('#inputString').val(thisValue);
setTimeout("$('#suggestions').hide();", 200);
}
})(jQuery);
</script> |