diff --git a/ui/ui.slider.js b/ui/ui.slider.js index be466a787..e31e64545 100644 --- a/ui/ui.slider.js +++ b/ui/ui.slider.js @@ -109,8 +109,9 @@ $.widget("ui.slider", { .each(function() { new handleclass(this); }) - .wrap('') + .wrap('') .parent() + .bind('click', function() { return false; }) .bind('focus', function(e) { self._focus(this.firstChild); }) .bind('blur', function(e) { self._blur(this.firstChild); }) .bind('keydown', function(e) { if(!self.options.noKeyboard) return self._keydown(e.keyCode, this.firstChild); })