Created
September 11, 2016 03:53
-
-
Save theredstapler/170d636599f91423e0235d983d3a0ddf to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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