Skip to content

Instantly share code, notes, and snippets.

@theredstapler
Created September 11, 2016 04:18
Show Gist options
  • Save theredstapler/a24cdf1854ffb4759d968cc0305c7db3 to your computer and use it in GitHub Desktop.
Save theredstapler/a24cdf1854ffb4759d968cc0305c7db3 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>
$('#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