I'd like to add a bit of OT to the discussion, but relating to the $
function itself.

Currently, $ wil not return an element, whose id is a number, whereas
getElementById will.

The fix, as you can imagine, is pretty simple.
I myself just changed the following line:

if (typeof element == 'string')

to:

if (typeof element == 'string' || typeof element == 'number')

I don't know if this is the most optimized way though.


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Prototype: Core" group.
To post to this group, send email to prototype-core@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/prototype-core?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to