@model HelloWorldMvcApp.SampleViewModel
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bootstrap 101 Template</title>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<div class="col-md-6 col-md-offset-3">
<label for="amount" >Maximum price:</label>
<input type="text" id="amount" readonly style="border:0; color:#f6931f; font-weight:bold;">
<div id="slider-range-min"></div>
<span id="danger" style="color: red;">GP Too Low, Naughty</span>
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
$(document).ready(function(){
$( "#slider-range-min" ).slider({
slide: function( event, ui ) {
$( "#amount" ).val( "$" + ui.value );
$( "#amount" ).val( "$" + $( "#slider-range-min" ).slider( "value" ) );