//The options are on the bottom (function ($) { $.fn.easySelect = function (options) { return this.each(function () { var settings = $.extend({ search: false, buttons: false, placeholder: 'Select item', selectColor: '#414c52', placeholderColor: '#838383', itemTitle: 'Selected items', showEachItem: false, width: '100%', dropdownMaxHeight: 'auto' }, options); var $this = $(this), numberOfOptions = $(this).children('option').length; $this.addClass('s-hidden'); $this.wrap('
'); var $main = $this.closest('.easySelect').css('width', settings.width); $this.after('
'); var $styledSelect = $this.next('div.styledSelect'); $styledSelect.text(settings.placeholder).css('color', settings.placeholderColor); var MaxAllowed = $this.data("max"); var clear = $('',{ 'class': 'clearSelectfromDiv', html: '×', 'style': 'display: none', }).prependTo($main); var $list = $('