I am using jQuery 1.7.2 and jQuery UI 1.9.1. I am using the code below within a slider. (http://jqueryui.com/slider/)
I have a function that should test two values a
That is because Low is a string.
Low
.toFixed() only works with a number.
.toFixed()
Try doing:
Low = parseFloat(Low).toFixed(..);