This is a big amount of code for a question, but basically this was working, then i tried to tweak it and have managed to break it. Can anyone spot a problem? There may be a couple actually.
Basically, it's just me learning jquery, and I want to get a value from an input, then when a user clicks compare, it slowly produces a graph of their answer, then does the same to a preset "average" answer, and will eventually tell them the difference between their answer and the average.
<h2 id="compare">Compare your score with the average</h2>
<p><a href="#compare" class="run">Compare</a></p>
<div style="height:400px;position:relative;">
<div id="score" style="position:absolute;left:0px;bottom:0px;width:200px;height:2px;background-color:#01DFD7;float:left;"></div>
<div id="score2" style="position:absolute;left:220px;bottom:0px;width:200px;height:2px;background-color:#FFD;float:left;"></div>
</div>
<input id="yourValue" type="text" />
<p id="answer"></p>
<script type="text/javascript">
$('.run').click(function(){
var theValue = $("#yourValue").val();
$('#score').animate({height:'theValue'}, 5000, function(){
$('#score2').animate({height:'200px'}, 5000, function(){
$('#answer#).html("<p>Your Answer: </p>" + theValue);
});
});
});
</script>
