Create Auto complete to Input field without database Jquery

Auto complete system one of the simple thing, It will done by using Jquery. Now we will see how to create auto complete process to the input field by using manually given keyword by the programmer. This process is very useful to the user. When user types the keyword it automatically shows the suggestion tho the used based on the given keyword.

 There is two ways to complete this process one is auto complete based on the database data and another one is based on the given keyword.For this concept there is no need any database. In previous session i showed you here how to create auto complete system with database. I hope this below example will help you. Check out my demo page in below link.



<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>jQuery UI Autocomplete - Default functionality</title>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script>
$( function() {
var availableTags = [
"ActionScript",
"Html",
"Css",
"BASIC",
"C",
"C++",
"Clojure",
"COBOL",
"ColdFusion",
"Erlang",
"Fortran",
"Groovy",
"Haskell",
"Java",
"JavaScript",
"Lisp",
"Perl",
"PHP",
"Python",
"Ruby",
"Scala",
"Scheme"
];
$( ".san" ).autocomplete({
source: availableTags
});
} );
</script>

<style>
.san{
width:100%;
border:1px solid red;
height:35px;
max-width:300px;
margin:0 auto;
display:block;
}

.content{
width:500px;
margin:0 auto;
background-color: #588659;
padding: 65px 35px;
}
</style>
</head>
<body>
<div class="content">
<h2 style="color:#fff; text-align:center;">Auto complete System without database using jQuery</h2>
<input class="san">
<p style="color:#fff; text-align:center;">www.sanwebcorner.com</p>
</div>
</body>
</html>

Post a Comment

0 Comments