Re: [jQuery] jquery array

2009-11-20 Thread lostwarrior
tshafer wrote: > > > I need to make a array from a list > > x data> table> > x2 data2> table> > x3 data3> table> > > I am having a hard time using jQuery.makeArray() to make an array > from the data and print it out. How can this be done. > Thanks > > -Tom > > hi please check this

[jQuery] jquery array

2009-04-25 Thread Tom Shafer
I need to make a array from a list data> data2> data3> I am having a hard time using jQuery.makeArray() to make an array from the data and print it out. How can this be done. Thanks -Tom

[jQuery] jQuery array iteration with offset?

2008-12-08 Thread Wells
Consider that I have an array ["a","b","c"] and that I want to iterate over it using the standard each() function like so: $(array).each(function (i) { }); However, is there an easy way to start an offset, say the second array element ("b") such that the iteration would just work on "b", "c"? T