Created
September 11, 2016 04:18
-
-
Save theredstapler/a24cdf1854ffb4759d968cc0305c7db3 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> | |
$('#autocomplete').autocomplete({ | |
serviceUrl: '/service.php' | |
}); | |
</script> | |
</body> | |
</html> | |
//service.php | |
<?php | |
//$_GET['query'] | |
echo '{"suggestions": ["United Arab Emirates", "United Kingdom", "United States"]}' | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment