Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
3answers
225 views

Is it possible to parseFloat the whole string?

As you know, the javascript's parseFloat function works only until it meets an invalid character, so for example parseFloat("10.123") = 10.123 parseFloat("12=zzzz") = 12 parseFloat("z12") = NaN Is ...
5
votes
4answers
950 views

javascript parseFloat '500,000' returns 500 when I need 500000

How would it be a nice way of handling this? I already thought on removing the comma and then parsing to float. Do you know a better/cleaner way? Thanks
4
votes
2answers
75 views

Parse Float has a rounding limit? How can I fix this?

I set up a system that parses a compact data string into JSON. I'm using a 19 digit number to store ids. Unfortunately any number greater than 17 digits, parseFloat() rounds the last few digits. This ...
3
votes
1answer
58 views

Are there are any side effects of using this method to convert a string to an integer

Are there any side effects if i convert a string to a number like below.. var numb=str*1; If I check with the below code it says this is a number.. var str="123"; str=str*1; if(!isNaN(str)) { ...
3
votes
3answers
285 views

is NaN equals to NaN

parseFloat("NaN") returns "NaN", but parseFloat("NaN") == "NaN" returns false. Now, that's probably a good thing that it does return false, but I don't understand how this is so. Did the ...
3
votes
3answers
1k views

parseFloat rounding

I have javascript function that automatically adds input fields together, but adding numbers like 1.35 + 1.35 + 1.35 gives me an output of 4.050000000000001, just as an example. How can I round the ...
3
votes
3answers
1k views

In jQuery, should i use parseFloat(el.width()) or parseInt(el.width(),10)? which one is more preferred

I always had this question: When i dont mind the exact floating number Which one is preferred? parseFloat someValue = parseFloat(el.outerWidth())+parseFloat(ele2.css("marginRight")), ...
3
votes
4answers
4k views

ParseFloat function in JavaScript

When i am adding two text boxes values that are 1.oo1 and 0.001 and then i do a parsefloat i get 1.0019999999. I want it 1.002 . Can u help me?
2
votes
1answer
37 views

Second argument to parseFloat in JavaScript?

In this font-size resizing tutorial: http://dev-tips.com/featured/jquery-tip-quick-and-easy-font-resizing the author uses parseFloat with a second argument, which I read here: ...
1
vote
3answers
207 views

How fast is parseFloat Vs. float ints in JavaScript?

I'm getting a huge dataset from a client's internal API. It'll contain a bunch of numerical data of prices such as: $31.23. He gives them to me as {"spend":"21.23"} which is fine, but I was concerned ...
1
vote
1answer
92 views

JS method parseFloat does not return correct value

parseFloat("-999999999999999.9991") returns -1000000000000000 and when debuging (-1000000000000000 == -999999999999999.999) condition is true.
1
vote
3answers
903 views

Javascript parseFloat '1.23e-7' gives 1.23e-7 when need 0.000000123

parseFloat(1.51e-6); // returns 0.00000151 parseFloat(1.23e-7); // returns 1.23e-7 // required 0.000000123 I am sorting table columns containing a wide range of floating-point numbers, some ...
1
vote
3answers
683 views

parsing numbers in a javascript array

Hi I have a string of numbers separated by commas, "100,200,300,400,500" that I'm splitting into an array using the javascript split function: var data = []; data = dataString.split(","); I'm ...
0
votes
2answers
37 views

My simple javascript code for parseFloat is ignoring the decimals

Here is the code: function updateCartSubtotal() { var subtotal = 0.00; $('span.item-subtotal-value').each(function () { subtotal = subtotal + parseFloat($(this).text()); //24.00 for ...
0
votes
1answer
40 views

parsefloat('string' + var) syntax issue

I have a string that equals 'Res' described by: ResEmp = drpdwn.id.substring(3,6) If I wanted the following code: parseFloat(AppResYrs.value) to get 'Res' from the ResEmp variable, what syntax ...
0
votes
3answers
40 views

Jquery - Settle parseFloat's to evert 50'ing number

So, I'm having some variables, which all contains numbers, and they are all parseFloat's. In the end, all the parseFloat's are calculated into one variable, and from that variable, i need some ...
0
votes
4answers
186 views

Javascript parse float is ignoring the decimals after my comma

Here's a simple scenario. I want to show the subtraction of two values show on my site: //Value on my websites HTML is: "75,00" var fullcost = parseFloat($("#fullcost").text()); //Value on my ...
0
votes
1answer
104 views

Javascript multiplying incorrectly, causing incorrect rounding

When I pull the values I want to multiply, they're strings. So I pull them, parse them as floats (to preserve the decimal places), and multiply them together. LineTaxRate = parseFloat(myRate) * ...
0
votes
4answers
341 views

Javascript: parseFloat not working

I am using jQuery to pull some data from a web page, it comes back as an array with the following values (.5, .25, 1.25, 3.75) which I am trying to add. Here's my code snippet: var th = 0; for ...
0
votes
3answers
193 views

How can I move the decimal point to the 100ths of an integer?

This seems like a silly question but I cant figure out how to convert an integer number that represent cents to dollars. 3000 -> 30.00 in javascript... I was using ParseFloat but it's only giving ...
0
votes
1answer
259 views

Chrome problem parsing Float from jquery css atribute

today i have a simple an understable problem for me . Next code: alphavar = $('#frontcolour').css('opacity'); console.debug(alphavar+' '+parseFloat(alphavar)); It runs ok width Firefox and width ...
0
votes
1answer
2k views

jquery parseFloat assigning val to field

I have a select box that gives a description of a product along with a price. Depending on what the user selects, I'd like to automatically grab that dollar amount from the option selected and assign ...
0
votes
2answers
92 views

please tell me where i am doing mistake in following javascript code of conversion to float

i wrote following code to do some of a specifice column of gridview.. but its not working please tell me were i am missing... function ManipulateGrid() { var gvDrv = ...