Descrição
Você pode ocultar a entrada de número e fazer o controle deslizante largura total usando CSS personalizado.
Exemplo
O exemplo a seguir demonstra o uso do controle deslizante de largura total no jQuery Mobile.
<!DOCTYPE html>
<html>
<head>
<title>Full Width Slider With No Input</title>
<meta name = "viewport" content = "width = device-width, initial-scale = 1">
<link rel = "stylesheet" href = "https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
<script src = "https://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src = "https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
<style>
.full-width-slider input {display: none;}
.full-width-slider .ui-slider-track {margin-left: 10px;}
</style>
</head>
<body>
<form class = "full-width-slider">
<label for = "slider1" class = "ui-hidden-accessible">Slider:</label>
<input type = "range" name = "slider1" id = "slider1" min = "0" max = "100"
value = "60">
</form>
</body>
</html>
Resultado
Vamos realizar as seguintes etapas para ver como funciona o código acima -