autocomplate just open, not work
Hi. Before, sorry my english not enought. I make this but just open list not a decompose.Is why?
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <title>autocomplete demo</title>
- <link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
- <script src="//code.jquery.com/jquery-1.10.2.js"></script>
- <script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
- </head>
- <body>
-
- <label for="autocomplete">Select a programming language: </label>
- <input id="autocomplete">
-
- <script>
- $( "#autocomplete" ).autocomplete({
- source: "test.php"
-
- });
- </script>
-
- </body>
- </html>
and test.php
- [ "ActionScript",
- "AppleScript",
- "Asp",
- "BASIC",
- "C",
- "C++",
- "Clojure",
- "COBOL",
- "ColdFusion",
- "Erlang",
- "Fortran",
- "Groovy",
- "Haskell",
- "Java",
- "JavaScript",
- "Lisp",
- "Perl",
- "PHP",
- "Python",
- "Ruby",
- "Scala",
- "Scheme"
- ]
link
Thanks.