UI slider, little issue
UI slider, little issue
Hi
I have a question: how to remove a border from ui slider button when it's active? In other cases I use trick
- <a href="#" onfocus="this.blur()">
Okay, it works, but not in jquery.slider.ui
- if ($(".ui-slider-handle", this.element).length == 0)
- $('<a href="#" onfocus="this.blur()"></a>')
- .appendTo(this.element)
- .addClass("ui-slider-handle");
- if (o.values && o.values.length) {
- while ($(".ui-slider-handle", this.element).length < o.values.length)
- $('<a href="#" onfocus="this.blur()"></a>')
- .appendTo(this.element)
- .addClass("ui-slider-handle");
- }
for example: here http://jqueryui.com/demos/slider/default.html if I push the button it have a dotted border
So, question is: how to remove a border?
PS: sorry for my english =)