How can i remove the tooltip from a Slider control (input[range]) in WinJS?
WinJS: Remove tooltip from Slider
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;
}
© 2022 - 2024 — McMap. All rights reserved.