You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.2 KiB
53 lines
1.2 KiB
5 years ago
|
<!doctype html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
<title>jQuery UI Autocomplete - Default functionality</title>
|
||
|
<link rel="stylesheet" href="../../themes/base/all.css">
|
||
|
<link rel="stylesheet" href="../demos.css">
|
||
|
<script src="../../external/requirejs/require.js"></script>
|
||
|
<script src="../bootstrap.js">
|
||
|
var availableTags = [
|
||
|
"ActionScript",
|
||
|
"AppleScript",
|
||
|
"Asp",
|
||
|
"BASIC",
|
||
|
"C",
|
||
|
"C++",
|
||
|
"Clojure",
|
||
|
"COBOL",
|
||
|
"ColdFusion",
|
||
|
"Erlang",
|
||
|
"Fortran",
|
||
|
"Groovy",
|
||
|
"Haskell",
|
||
|
"Java",
|
||
|
"JavaScript",
|
||
|
"Lisp",
|
||
|
"Perl",
|
||
|
"PHP",
|
||
|
"Python",
|
||
|
"Ruby",
|
||
|
"Scala",
|
||
|
"Scheme"
|
||
|
];
|
||
|
$( "#tags" ).autocomplete({
|
||
|
source: availableTags
|
||
|
});
|
||
|
</script>
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<div class="ui-widget">
|
||
|
<label for="tags">Tags: </label>
|
||
|
<input id="tags">
|
||
|
</div>
|
||
|
|
||
|
<div class="demo-description">
|
||
|
<p>The Autocomplete widgets provides suggestions while you type into the field. Here the suggestions are tags for programming languages, give "ja" (for Java or JavaScript) a try.</p>
|
||
|
<p>The datasource is a simple JavaScript array, provided to the widget using the source-option.</p>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|