Skip to content

Instantly share code, notes, and snippets.

@theredstapler
Created September 11, 2016 03:53
Show Gist options
  • Save theredstapler/170d636599f91423e0235d983d3a0ddf to your computer and use it in GitHub Desktop.
Save theredstapler/170d636599f91423e0235d983d3a0ddf to your computer and use it in GitHub Desktop.
<html>
<head>
<script src="jquery-2.1.4.js"></script>
<script src="jquery.autocomplete.min.js"></script>
<link rel="stylesheet" type="text/css" href="styles.css">
<style>
h1 { text-align: center; margin: 20px 20px; }
#autocomplete { margin: 0 auto; }
</style>
</head>
<body>
<h1>Autocomplete Input</h1>
<input type="text" id="autocomplete"/>
<script>
var arr= ["test", "apple", "orange"];
$('#autocomplete').autocomplete({
lookup: arr
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment