<div dir="ltr"><div>Hi all,<br></div><div>I've noticed that if you create a 'slider' widget with a checkbox that if it's unchecked when it first loads, then the slider is enabled. If you check/uncheck then the slider is disabled. Or at least that's what I seen in google chrome.</div><div><br></div><div>I'm really not familiar with NodeJS, but this _seems_ to fix the problem:</div><div><br></div><div>Does this fix make sense?  If so - I'll do a p/r for it.</div><div><br></div><div>//.ichael </div><div><br></div><div><br></div>* Slider widget plugin<br>  */<br> <br> $.fn.slider = function(options) {<br>   return this.each(function() {<br>-    <font color="#ff0000">var $sld = $(this).closest('.slider'), data = $.extend({ checked: true }, $sld.data());</font><br>+ <font color="#38761d">   var $sld = $(this).closest('.slider'), $cbi = $sld.find('.slider-enable'), data = $.extend({ checked: $cbi.prop("checked") }, $sld.data());</font><br>     var opts = (typeof options == "object") ? options : data;<br>     // init?<br>     if ($sld.children().length == 0) {<br>       var id = $sld.attr('id');<br>       $sld.html('\<br></div>