I'm always excited to take on new projects and collaborate with innovative minds.
98/4 Pravesh Vihar Shastri Nagar, Meerut
Custom Select is a lightweight jQuery plugin that enhances autocomplete with debounced search, keyboard navigation, lazy loading, and multiple selection support.
Autocomplete functionality is essential for modern web applications, improving user experience by providing quick and relevant search suggestions. To enhance this, I have created Custom Select, a lightweight yet powerful jQuery-based autocomplete plugin that offers flexibility, seamless navigation, and performance optimization.
Include jQuery and the plugin script in your project:
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="path/to/custom-select.js"></scrip
Apply Custom Select to an input field and configure its settings:
<input type="text" id="search" name="search">
<script>
$(document).ready(function() {
$('#search').customSelect({
url: '/api/search',
minChars: 2,
itemsPerPage: 5,
debounceTime: 300,
placeholder: 'Search here...',
noResultsText: 'No matches found',
enableKeyboardNavigation: true,
maxResults: 50,
multiple: true
});
});
</script>
Option | Default | Description |
---|---|---|
url | '' | API endpoint for fetching data |
minChars | 3 | Minimum characters before searching |
itemsPerPage | 10 | Number of results per API call |
debounceTime | 500 | Delay before making API requests (ms) |
placeholder | 'Start typing...' | Input field placeholder |
noResultsText | 'No results found' | Message when no results are available |
maxResults | 100 | Maximum results allowed |
enableKeyboardNavigation | true | Enables arrow key navigation |
autoSelectFirst | false | Automatically selects the first result |
multiple | false | Allows multiple selections |
The Custom Select jQuery plugin provides a feature-rich yet lightweight solution for enhancing autocomplete functionality in web applications. With its customizable settings, error handling, and seamless user experience, it’s an excellent addition to any project requiring dynamic search capabilities.
Give it a try, and let me know your thoughts!
Your email address will not be published. Required fields are marked *