/* * Author: Marco Kuiper (http://www.marcofolio.net/) */ jOldQuery(document).ready(function() { // Safely inject CSS3 and give the search results a shadow var cssObj = { 'box-shadow' : '#888 5px 10px 10px', // Added when CSS3 is standard '-webkit-box-shadow' : '#888 5px 10px 10px', // Safari '-moz-box-shadow' : '#888 5px 10px 10px'}; // Firefox 3.5+ jOldQuery("#suggestions").css(cssObj); // Fade out the suggestions box when not active jOldQuery("input").blur(function(){ jOldQuery('#suggestions').fadeOut(); }); }); function lookup(inputString) { if(inputString.length == 0) { jOldQuery('#suggestions').fadeOut(); // Hide the suggestions box } else { jOldQuery.post("applications/menus/addons/search/rpc.php", {queryString: ""+inputString+"", page: "galerie", lg: "fr", getlg: "true", nbr_data: "9"}, function(data) { // Do an AJAX call jOldQuery('#suggestions').fadeIn(); // Show the suggestions box jOldQuery('#suggestions').html(data); // Fill the suggestions box }); } };