On Mar 3, 4:28 am, "Karl Rudd" <[EMAIL PROTECTED]> wrote: > 2. Try: > > $('table[id=Instructions]')
Instead of working around an error on your side try not to use duplicate ids. An id is supposed to be unique in a document - that's why length is 1 because the underlying document.getElementById always returns 1 element, namely the first one. Scripting on top of an invalid DOM won't make your life easier and give you unexpected results. That said, you should use classes instead of ids if you have more than one occurence. --Klaus