Search code examples
winjs

WinJS: Remove tooltip from Slider


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

Tooltip


Solution

  • 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;
    }