🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

Hemi Custom Select is a jQuery plugin to create a responsive, fully customizable select box with events and smooth fade-in animation support.

Custom-Select Select

Documentation

jquery-hemi-custom-select

jQuery custom select plugin. Custom responsive design.

Demo:

http://heminei.github.io/jquery-hemi-custom-select/demo/

How to use:

<link href="/src/jquery.hemiCustomSelect-2.4.css" rel="stylesheet" type="text/css"/> <script src="/src/jquery.hemiCustomSelect-2.4.js" type="text/javascript"></script>  <select class="js-hemi-custom-select"> 	<option>1</option> 	<option>2</option> 	<option disabled="">3</option> 	<option>4</option> 	<option>5</option> </select>
$(function () { 	$(".js-hemi-custom-select").hemiCustomSelect(); });

Options:

$(function () { 	$(".js-hemi-custom-select").hemiCustomSelect({ 		wrapper: { 			'class': "hcs-select-wrapper", 			'element': $("<div/>") 		}, 		select: { 			'class': "" 		}, 		title: { 			'class': "hcs-select-title", 			'element': $("<span/>") 		}, 		arrow: { 			'class': "hcs-select-arrow", 			'element': $("<span/>") 		}, 		responsive: true, 		dropdown: { 			enable: false, 			element: $("<div/>"), 			'class': "hcs-dropdown", 			'classOpen': "hcs-dropdown-open", 			option: { 				element: $("<div/>"), 				'class': "hcs-dropdown-option", 				'classSelected': "selected", 				'classDisabled': "disabled" 			}, 			optgroup: { 				element: $("<div/>"), 				'class': "hcs-dropdown-optgroup", 				'classDisabled': "disabled", 				'label': { 					element: $("<div/>"), 					'class': "hcs-dropdown-optgroup-label" 				} 			} 		}, 		init: function (element) {  		}, 		onLoad: function (element) {  		}, 		onChange: function (element) {  		}, 		onClick: function (element) {  		}, 		onRefresh: function (element) {  		}, 		onResize: function (element) {  		} 	}); });

You May Also Like