I am creating a savings calculator using two sliders. There are two inputs (number of studens and group size) and two outputs (money savings and time savings). I included an image for reference. The calculations are working but I have to hit refresh in order to see the new answers when I move the slider. Instead I want my answers to change as I move the slider.
I worked from this site but made changes for calculations: http://egorkhmelev.github.com/jslider/
How I want it to look eventually:

<div class="layout">
<div class="layout-slider" style="width: 20%">
<input id="SliderSingle" type="slider" name="kids" value="20" />
<script type="text/javascript" charset="utf-8">
jQuery("#SliderSingle").slider({
from: 1,
to: 1000,
step: 1,
round: 1,
format: {
format: '0',
locale: 'de'
},
dimension: ' Kids',
});
var numkids = $("#SliderSingle").slider("value");
</script>
</div>
<div class="layout-slider" style="width: 20%">
<input id="Slider" type="slider" name="group" value="20" />
<script type="text/javascript" charset="utf-8">
jQuery("#Slider").slider({
from: 1,
to: 5,
step: 1,
round: 1,
format: {
format: '0',
locale: 'de'
},
dimension: ' Kids',
});
var groupsize = $("#Slider").slider("value");
</script>
</div>
<script type="text/javascript" charset="utf-8">
var timesaved = (numkids * 65) / groupsize;
var moneysaved = timesaved * 60;
document.write(timesaved + "hrs ");
document.write(" | " + numkids + " | ");
document.write("$" + moneysaved);
</script>
<div>
Any help is greatly appreciated.


<script>tag. Your code runs now because it executes the code when the page loads. You want that code to be executed when the sliders change. Putting it in the function allows you to call that function when either of the sliders changes. – Dave Anderson Feb 1 at 2:45