Thursday, December 31, 2009

[jQuery] Re: trying to do Math.min on 3 tds by excluding if one = 0

I'm not sure what youre trying to do here...
but the jQuery object does not contain the min() method as a property.

To use the Math.min method, you give the values as arguments...

var xmin = Math.min(x1, x2, x3);

No comments: