WinJS: Remove tooltip from Slider
Asked Answered
E

1

9

How can i remove the tooltip from a Slider control (input[range]) in WinJS?

Tooltip

Escharotic answered 14/10, 2012 at 12:46 Comment(0)
E
14

Add the ::-ms-tooltip pseudo element and set display: to none;

http://msdn.microsoft.com/en-us/library/windows/apps/hh465805.aspx

input[type=range]::-ms-tooltip {
    display: none;
}
Escharotic answered 14/10, 2012 at 18:7 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.