[jQuery] Re: How to remove an object from an Array ?

2008-06-29 Thread Michael Geary
> > array.splice( index_of_element, 1 ); > this one only work in mozila browser ! Naw, that's core JavaScript in the ECMAScript 3 standard; it will work in every browser at least as far back as JavaScript 1.2 and Jscript 5.5, including non-browser environments such as PDF. -Mike

[jQuery] Re: How to remove an object from an Array ?

2008-06-29 Thread Ariel Flesler
No, I actually verified this before posting, using IE. Give me a link and I'll check if you want. -- Ariel Flesler http://flesler.blogspot.com/ On 29 jun, 13:06, Plant More Tree <[EMAIL PROTECTED]> wrote: > this one only work in mozila browser ! > > > > > > Ariel Flesler wrote: > > > array.splic

[jQuery] Re: How to remove an object from an Array ?

2008-06-29 Thread Plant More Tree
this one only work in mozila browser ! Ariel Flesler wrote: > > > array.splice( index_of_element, 1 ); > > -- > Ariel Flesler > http://flesler.blogspot.com/ > > On 29 jun, 06:28, Plant More Tree <[EMAIL PROTECTED]> wrote: >> Hi Guys, >> >>    I got an javascript object like this : >> >> var

[jQuery] Re: How to remove an object from an Array ?

2008-06-29 Thread Ariel Flesler
array.splice( index_of_element, 1 ); -- Ariel Flesler http://flesler.blogspot.com/ On 29 jun, 06:28, Plant More Tree <[EMAIL PROTECTED]> wrote: > Hi Guys, > >    I got an javascript object like this : > > var usercontacts = { id:null, contactEmail:null, contactName:null, > source:null }; > > and