
Download Demo
jQuery easySelect is a plugin to present multiple select elements in easier way.
1. INCLUDE CSS AND JS FILES
<link href="jquery.easyselect.min.css" rel="stylesheet"><script src="jquery-1.10.2.min.js" type="text/javascript"></script><script src="jquery.easyselect.min.js" type="text/javascript"></script> |
Place your multiple select element (<select multiple>) in the HTML:
<select id="foo" multiple>
<option>bar</option>
<option>baz</option>
</select>
3. JAVASCRIPT$(document).ready(function() { $("#foo").easySelect();}); |
| Property | Default | Description |
|---|---|---|
| maxOption | 0 | Maximum number of selected options. (0: no limit) (integer) |
| removeIcon | “<span> ✖</span>” | HTML code for the remove icon on selected options. (string) |
| onKeyup | null | A function to trigger when user keyup on easySelect’s input field. (function) |
$('#select').easySelect({
maxOption: 5,
removeIcon: '<img src="icon.png" alt="x">'
});
5. METHODS| Name | Description |
|---|---|
| refresh | Re-generates easySelect components according to current state of the select element. |
$('#select').data('easySelect').refresh();
No comments:
Post a Comment