Sill Q I know - sorry in advance - but how do you read a decimal point value in JQuery. e.g.
<input type="text" name="test" value="1.23">
Then take that value "1.23" into something like this
var test = $(this).val();
$(this).next('.txt').text(test);
Where .txt is the "next" div with a class of txt and "$(this)" is the input