consequently
parseFloat(document.eqform.TextLecture.value) = parseFloat(document.eqform.TextLecture.value) + (parseFloat(number));
doesnŽt work either - any ideas for that?
IŽm now trying to make an if statement because the first time I use the function parseFloat(document.eqform.TextLecture.value) = NULL and not 0.
WeŽll see how that goes.
Use Number() instead of parseFloat(). It will return 0 if the value is an empty string. Parsing methods are, in fact, methods to parse a number from another base to decimal.
Use Number() instead of parseFloat(). It will return 0 if the value is an empty string. Parsing methods are, in fact, methods to parse a number from another base to decimal.
Bookmarks