[jQuery] Re: jquery math functions?

2007-10-01 Thread Wizzud


Google for 'javascript reference Math object'.


FrankTudor wrote:
> 
> 
> Is there a place that I can see the math functions available?
> 
> Frank
> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/jquery-math-functions--tf4551431s27240.html#a12989165
Sent from the jQuery General Discussion mailing list archive at Nabble.com.



[jQuery] Re: jquery math functions?

2007-10-01 Thread Klaus Hartl


FrankTudor wrote:

Is there a place that I can see the math functions available?

Frank


That's POSJ (Plain Old Simple JavaScript), no need for jQuery here, for 
example:


var max = Math.max(1, 2);


--Klaus


[jQuery] Re: jquery math functions?

2007-10-02 Thread Flesler

http://www.w3schools.com/jsref/jsref_obj_math.asp

On Oct 1, 7:21 pm, Klaus Hartl <[EMAIL PROTECTED]> wrote:
> FrankTudor wrote:
> > Is there a place that I can see the math functions available?
>
> > Frank
>
> That's POSJ (Plain Old Simple JavaScript), no need for jQuery here, for
> example:
>
> var max = Math.max(1, 2);
>
> --Klaus