When i am trying to round off the number upto 2 digits in jquery using isfixed. it is not wokring properly.
Example:
68.165.toFixed(2) return 68.17 which is correct, but when i write 68.175.toFixed(2) its returning 68.17 as well. However it should return 68.18.
Thanks