Last active
April 17, 2018 03:03
-
-
Save dovidezra/145ad41fa18640f7ad10a979bbc5f4ea to your computer and use it in GitHub Desktop.
CDN hosted jQuery based Autocomplete script with Millions of Suggestions. Details: https://knowledgebasehub.com
This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta http-equiv="content-type" content="text/html; charset=UTF-8"> | |
<!-- jQuery Required Library --> | |
<link rel="stylesheet" type="text/css" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.9.0/themes/base/jquery-ui.css"> | |
<script type="text/javascript" src="https://code.jquery.com/jquery-2.x-git.min.js"></script> | |
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.9.2/jquery-ui.min.js"></script> | |
<!-- Our CDN Hosted Script --> | |
<script type="text/javascript" src="https://sitecolo.github.io/knowledgebasehub/web/web-en.js"></script> | |
</head> | |
<body> | |
<form class="searchform cf"> | |
<!-- Note: the id is called by the script --> | |
<input id="search" type="text" placeholder="Start typing a search term"> | |
<button type="submit">Search</button> | |
</form> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment