(function($, undefined){ "use strict"; $.widget("ui.editSliderDemo", $.ui.sliderDemo, { _title: "Editable slider", _name: "editRangeSlider", _createOptions: function(){ $.ui.sliderDemo.prototype._createOptions.apply(this); this._createInputTypeOption(); }, _createInputTypeOption: function(){ this._createDT("Input type"); var select = $("") .append("") .append(""); this._createDD(select); select.change($.proxy(this._easyOptionChange, this)); } }); })(jQuery);