How to get jquery autocomplete values to search?
The autocomplete part works, but clicking on the values in the drop down just puts them into the search box, and then I have to hit enter to perform the search. How do I get the values to search?
- <script>
- $(function () {
- var availableTags = ["SEO", "Responsive Design", "Google Local", "Twitter", "Social Media", "Web Design", "What is Google Authorship", "NFL", "Fantasy Football Rankings", "Kevin Sullivan", "Fantasy Football RB Rankings 2013", "Fantasy Football", "How to Buy Twitter Followers", "Advanced IFX", "Social Media Marketing", "NFL Schedule 2013-2014 Season", "Fantasy Football Breakdown", ];
- $(".search_box")
- .autocomplete({
- source: availableTags
- });
- });
- </script>