[jQuery] Re: Round numbers

2009-11-15 Thread factoringcompare.com
That worked! Thank you very much for your help. I was putting Math.ceil () completely in the wrong place. On Nov 15, 6:06 pm, PiotrJaniak wrote: > Hi, > > in your code this should look like this: > > $(document).ready(function() { > >  $("#firstBox, #secondBox, #thirdBox, #forthBox").change(fun

[jQuery] Re: Round numbers

2009-11-15 Thread PiotrJaniak
Hi, in your code this should look like this: $(document).ready(function() { $("#firstBox, #secondBox, #thirdBox, #forthBox").change(function cal () { $("#thirdBox").val(Math.ceil(((Number($("#forthBox").val()) * Number ($ ("#secondBox").val()) )/100 )- Number($("#firstBox").val(; }); $(

Re: [jQuery] Re: Round numbers

2009-11-15 Thread waseem sabjee
May i see your html On Sun, Nov 15, 2009 at 7:24 PM, factoringcompare.com < firstfacto...@googlemail.com> wrote: > Thanks. this does not work. Added class to form and included the > above. > > > On Nov 15, 5:05 pm, waseem sabjee wrote: > > say you have 5 text boxes each with the class mybox > >

[jQuery] Re: Round numbers

2009-11-15 Thread factoringcompare.com
Thanks. this does not work. Added class to form and included the above. On Nov 15, 5:05 pm, waseem sabjee wrote: > say you have 5 text boxes each with the class mybox > > var x = $(".mybox").length; > > var y = Math.Round(x); > > OR > > var y = Math.Ceil(x); > > On Sun, Nov 15, 2009 at 6:45 PM,

Re: [jQuery] Re: Round numbers

2009-11-15 Thread waseem sabjee
say you have 5 text boxes each with the class mybox var x = $(".mybox").length; var y = Math.Round(x); OR var y = Math.Ceil(x); On Sun, Nov 15, 2009 at 6:45 PM, factoringcompare.com < firstfacto...@googlemail.com> wrote: > Hi, > > Great, I have a a go at putting into my code but can't can y

[jQuery] Re: Round numbers

2009-11-15 Thread factoringcompare.com
Hi, Great, I have a a go at putting into my code but can't can you suggest how? On Nov 15, 4:06 pm, PiotrJaniak wrote: > Hi, > > to round up results u can use Math.ceil(value); > > On 15 Lis, 16:10, "factoringcompare.com" > > > > wrote: > > Hi, > > > The below calculates a couple of textboxes a

[jQuery] Re: Round numbers

2009-11-15 Thread PiotrJaniak
Hi, to round up results u can use Math.ceil(value); On 15 Lis, 16:10, "factoringcompare.com" wrote: > Hi, > > The below calculates a couple of textboxes and then allows for the > user to click an up or down image to re calculate decreasing or > increasing a number. Question is how can I round up