How to create a simple Autocomplete Search Engine Using Materialize CSS
Make money for being or staying online/internet.

You will get a $50 starting gift when you join using this code: Exode4LKrbujm1z and link:: GET THE OFFER NOW!!

In this article, I take you step by step on how to implement or add an autocomplete dropdown below your input to suggest possible values in your form based on searched data by the end-user.

You can also populate the list of autocomplete options dynamically as well which i will share with you very soon on the channel(Oston Code Cypher) and here.

Absorbing this amount of content would be alot if you are just reading it,so i have put together a very simple video for you.

In the next video we will use AJAX and PHP in order to fetch data from the database on a fly or Asynchronously(Without page reload).

HTML MARKUP

Make sure you give your input element a class of autocomplete because it will be the one we hold on when selecting it in javascript.

copy
	
<html>

<head>
	<title>Auto Complete</title>
</head>
<body>

	<h4>AutoComplete search</h4>

	<!-- input element -->
	<div class="input-field">
	<input type="text" class="autocomplete">
	<label>Search</label>
	</div>

</body>
</html>

JAVASCRIPT & INITIALIZATION

The data is a json object where the key is the matching string and the value is an optional image url(Watch Video).

copy
document.addEventListener('DOMContentLoaded',function(){

const inputField =document.querySelector('.autocomplete');

M.Autocomplete.init(inputField,{
	data:{
		'Google':null,
		'Yahoo':null,
		'Youtube':null,
		'OstonCode':null
	},
	limit:'infinit',
	minLength:1
});

});
Option Name Description
data Data object defining autocomplete options with optional icon strings.
limit Limit of results the autocomplete shows,The Default is infinity.
minLength Minimum number of characters the user has to enter or type before autocomplete starts.

Incase you want to learn more about the Autocomplete options, Visit the official materialize css documentation page. More Options

Save up to 80% with this Domain & Shared Hosting package deal! 80% OFF - GET OFFER NOW

Related Post(s)

» How to create Parallax Scrolling Effects using Materialize CSS

» How to create Tool tips using Materialize CSS

» How to create a Form Character Counter using Materialize

» How to create a Simple and Responsive Sidenav

» How to create a simple Autocomplete Search Engine Using Materialize CSS

collections_bookmark Category :: Materialize css
date_range Published :: 4 years ago At: 09:27 AM
event_note Detailed Date :: Oct 27th, 2019
person Writer :: Timothy
  • RECENT POSTS
3 weeks ago

Mr.

(sel


3 weeks ago

Mr.

(sel


3 weeks ago

Mr.

555


3 weeks ago

Mr.

555


3 weeks ago

Mr.

5550


3 weeks ago

Mr.

5550


3 weeks ago

Mr.

555


3 weeks ago

Mr.

555


Subscribe
  • ADVERTISEMENT

YOU MAY LIKE THESE POSTS

share