Yes I understand, but I'm trying to understand when the Accordion code would have a NaN or Infinity value.
On Fri, Feb 24, 2012 at 2:25 PM, Suzanne <[email protected]> wrote: > I added if (value != 'NaN' && value != 'Infinity') {} and it cleared > out the error. Thank you! > > > > On Feb 24, 9:42 am, Philip Thompson <[email protected]> wrote: > > On Fri, Feb 24, 2012 at 6:56 AM, Gafa <[email protected]> wrote: > > > > > if (value !='NaN' || value!='Infinity'){ > > > > You probably mean... > > > > if (value != 'NaN' && value != 'Infinity') {...} > > > > ~Philip >
