├── .gitignore ├── README.md ├── changelog.txt ├── docs ├── README.md ├── css │ ├── commonPrint.css │ ├── jquery.autocomplete.css │ ├── jquery.tabs-ie.css │ ├── jquery.tabs.css │ ├── main.css │ ├── reset.css │ └── screen.css ├── img │ └── logo_jquery_215x53.gif ├── index.html ├── jQuery Autocomplete Plugin Demo.webloc ├── js │ ├── custom.js │ ├── ga.js │ ├── jquery-latest.js │ ├── jquery.autocomplete.js │ ├── jquery.bgiframe.min.js │ ├── jquery.dimensions.js │ ├── jquery.min.js │ └── jquery.tabs.js └── subs │ ├── autocomplete_options.html │ ├── flushCache.html │ ├── index-blank.html │ ├── result.html │ ├── search.html │ └── setOptions.html ├── indicator.gif ├── jquery.autocomplete.css ├── jquery.autocomplete.js ├── jquery.autocomplete.min.js ├── jquery.autocomplete.pack.js └── lib └── jQuery-1.4.4.min.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.tmproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarzola/jQueryAutocompletePlugin/HEAD/README.md -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarzola/jQueryAutocompletePlugin/HEAD/changelog.txt -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarzola/jQueryAutocompletePlugin/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/css/commonPrint.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarzola/jQueryAutocompletePlugin/HEAD/docs/css/commonPrint.css -------------------------------------------------------------------------------- /docs/css/jquery.autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarzola/jQueryAutocompletePlugin/HEAD/docs/css/jquery.autocomplete.css -------------------------------------------------------------------------------- /docs/css/jquery.tabs-ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarzola/jQueryAutocompletePlugin/HEAD/docs/css/jquery.tabs-ie.css -------------------------------------------------------------------------------- /docs/css/jquery.tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarzola/jQueryAutocompletePlugin/HEAD/docs/css/jquery.tabs.css -------------------------------------------------------------------------------- /docs/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarzola/jQueryAutocompletePlugin/HEAD/docs/css/main.css -------------------------------------------------------------------------------- /docs/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarzola/jQueryAutocompletePlugin/HEAD/docs/css/reset.css -------------------------------------------------------------------------------- /docs/css/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarzola/jQueryAutocompletePlugin/HEAD/docs/css/screen.css -------------------------------------------------------------------------------- /docs/img/logo_jquery_215x53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarzola/jQueryAutocompletePlugin/HEAD/docs/img/logo_jquery_215x53.gif -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarzola/jQueryAutocompletePlugin/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/jQuery Autocomplete Plugin Demo.webloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarzola/jQueryAutocompletePlugin/HEAD/docs/jQuery Autocomplete Plugin Demo.webloc -------------------------------------------------------------------------------- /docs/js/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarzola/jQueryAutocompletePlugin/HEAD/docs/js/custom.js -------------------------------------------------------------------------------- /docs/js/ga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarzola/jQueryAutocompletePlugin/HEAD/docs/js/ga.js -------------------------------------------------------------------------------- /docs/js/jquery-latest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarzola/jQueryAutocompletePlugin/HEAD/docs/js/jquery-latest.js -------------------------------------------------------------------------------- /docs/js/jquery.autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarzola/jQueryAutocompletePlugin/HEAD/docs/js/jquery.autocomplete.js -------------------------------------------------------------------------------- /docs/js/jquery.bgiframe.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarzola/jQueryAutocompletePlugin/HEAD/docs/js/jquery.bgiframe.min.js -------------------------------------------------------------------------------- /docs/js/jquery.dimensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarzola/jQueryAutocompletePlugin/HEAD/docs/js/jquery.dimensions.js -------------------------------------------------------------------------------- /docs/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarzola/jQueryAutocompletePlugin/HEAD/docs/js/jquery.min.js -------------------------------------------------------------------------------- /docs/js/jquery.tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarzola/jQueryAutocompletePlugin/HEAD/docs/js/jquery.tabs.js -------------------------------------------------------------------------------- /docs/subs/autocomplete_options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarzola/jQueryAutocompletePlugin/HEAD/docs/subs/autocomplete_options.html -------------------------------------------------------------------------------- /docs/subs/flushCache.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarzola/jQueryAutocompletePlugin/HEAD/docs/subs/flushCache.html -------------------------------------------------------------------------------- /docs/subs/index-blank.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/subs/result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarzola/jQueryAutocompletePlugin/HEAD/docs/subs/result.html -------------------------------------------------------------------------------- /docs/subs/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarzola/jQueryAutocompletePlugin/HEAD/docs/subs/search.html -------------------------------------------------------------------------------- /docs/subs/setOptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarzola/jQueryAutocompletePlugin/HEAD/docs/subs/setOptions.html -------------------------------------------------------------------------------- /indicator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarzola/jQueryAutocompletePlugin/HEAD/indicator.gif -------------------------------------------------------------------------------- /jquery.autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarzola/jQueryAutocompletePlugin/HEAD/jquery.autocomplete.css -------------------------------------------------------------------------------- /jquery.autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarzola/jQueryAutocompletePlugin/HEAD/jquery.autocomplete.js -------------------------------------------------------------------------------- /jquery.autocomplete.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarzola/jQueryAutocompletePlugin/HEAD/jquery.autocomplete.min.js -------------------------------------------------------------------------------- /jquery.autocomplete.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarzola/jQueryAutocompletePlugin/HEAD/jquery.autocomplete.pack.js -------------------------------------------------------------------------------- /lib/jQuery-1.4.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agarzola/jQueryAutocompletePlugin/HEAD/lib/jQuery-1.4.4.min.js --------------------------------------------------------------------------------