So I have a script which returns a price for a product. However the price may or may not include trailing zeros so sometimes I might have:
258.22
and other times I might have
258.2
In the later case I need to add the trailing zero with jQuery. How would I go about doing this?
I don't think jQuery itself has any string padding functions (which is what you're looking for). It's trivial to do, though:
Edit The above is great for strings, but for your specific numeric situation, rosscj2533's answer is the better way to go.
Javascript has a function - toFixed - that should do what you want ... no JQuery needed.
You can use javascript's
toFixed
method (source), you don't need jQuery. Example:Edit: Electric Toolbox link has succumbed to linkrot and blocks the Wayback Machine so there is no working URL for the source.