JQuery Email Autocomplete using Email-autocomplete JS
Today, i am going to show you how to make autocomplete email address using Jquery. email-autocomplete plugin through we can simple email autocomplete in our PHP, .net or etc project.
In this example i use bellow js and css
1) jquery.js
2) jquery.email-autocomplete.min.js
3) bootstrap.min.css
I also use bootstrap for better layout. I created very simple and full example so you don't have to do anything.
So, you can run bellow example and also see demo.
Preview:
Example:
<!DOCTYPE html>
<html>
<head>
<title>Jquery email autocomplete example</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://raw.githubusercontent.com/10w042/email-autocomplete/master/dist/jquery.email-autocomplete.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<style type="text/css">
.eac-sugg {
color: #ccc;
}
</style>
</head>
<body>
<input id="email" name="email" class="form-control" type="email" placeholder="Enter Email" />
<script type="text/javascript">
$("#email").emailautocomplete({
domains: [
"itsolutionstuff.com",
"gmail.com",
"yahoo.com",
"hotmail.com",
"live.com",
"facebook.com",
"outlook.com",
"gmx.com",
"me.com",
"laravel.com",
"aol.com"]
});
</script>
</body>
</html>
If you can't have access jquery.email-autocomplete.min.js file from url then you can get from here : Click Here.
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- How to Get Selected Radio Button Value in JQuery?
- How to Only Allow Numbers in a Text Box using jQuery?
- How to Disable F5 Refresh Button using JQuery?
- How to Remove Empty or Null Values from Array in JQuery?
- How to Remove Duplicate Value from Array in JQuery?
- How to Get Gravatar Image from Email using JQuery?
- How to Add Lazy Loading Image using JQuery?
- PHP Autocomplete Websites with Domain using Clearbit API
- How to Stop Setinterval() After Sometimes in JQuery?
- How to Remove Comma from String in JQuery?
- PHP JQuery Select2 Ajax Autocomplete Example
- How to Get the Current URL using JQuery?
- Bootstrap Dynamic Autocomplete search using Typeahead JS
- Multi Select Autocomplete JQuery Example with Code