I tried to use the code on this page to use the thermometer in a code. But it doesn’t work.
Code:
<head>
<script src="https://code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="https://code.jquery.com/ui/1.10.4/jquery-ui.min.js"></script>
<script type="text/javascript" src="bower/jquery.thermometer/js/jquery.thermometer.js"></script>
</head>
<body>
<div id='demo'></div>
<script>
$(function() {
$('#demo').thermometer({
height: 300,
percent: 75,
speed: 'slow',
minValue: 0,
maxValue: 100,
liquidColour: '#aa00bb'
});
})
</script>
</body>