[Proto-Scripty] Re: findElements querySelectorAll error

2009-05-21 Thread ColinFine
On May 20, 3:17 pm, pmac peter.mc...@gmail.com wrote: Thanks Colin for your response. I found the issue. IE8 does not like html element ids to start with numbers. If I prepend an X_ to the id, it works fine. One of those remarkable cases where IE conforms to the standard! ;-)

[Proto-Scripty] Re: findElements querySelectorAll error

2009-05-20 Thread ColinFine
It might help if you included enough of your code to make sense of. Since you have not told us anything about this.expression or this.mode, it's hard to have any idea what might be going on, especially since 'description' (which is what you are apparently asking about) doesn't occur anywhere else

[Proto-Scripty] Re: findElements querySelectorAll error

2009-05-20 Thread pmac
Thanks Colin for your response. I found the issue. IE8 does not like html element ids to start with numbers. If I prepend an X_ to the id, it works fine. On May 20, 7:04 am, ColinFine colin.f...@pace.com wrote: It might help if you included enough of your code to make sense of. Since you have

[Proto-Scripty] Re: findElements querySelectorAll error

2009-05-20 Thread Walter Lee Davis
Just to beat one of my favorite drums -- the W3C doesn't allow IDs to begin with numbers. An ID may begin with an alphabetical character or an underscore. Period. Full stop. Numbers after that first character are just dandy. Walter On May 20, 2009, at 10:17 AM, pmac wrote: I found the