//This site would allow the user to search through the and //be redirected to other pages within the site var source = [ { value: "index.html", label: "Home" }, { value: "videos.html", label: "videos" }, { value: "upcomingEvents.html", label: "Events" }, { value: "calculateImpact.html", label: "Donate" }, { value: "contactForm.html", label: "Contact Form" }, { value: "disclaimer_statement.html", label: "Disclaimer" }, { value: "siteMap.html", label: "Site Map" }, { value: "location.htm", label: "location" }, { value: "personalSettings.html", label: "Personal Settings" }, ]; $(document).ready(function() { $("input#autocomplete").autocomplete ({ source: source, select: function( event, ui ) { window.location.href = ui.item.value; //user selection and the redirect } //end select function }); //end autocomplete }); //end ready