| What does $(string) mean?
|
jmf314159

msg:1474808 | 4:21 pm on May 7, 2005 (gmt 0) | I found the following statement in a JavaScript library module: var elements = document.getElementsByClassName($('class-name').value); Would someone please explain the $(string) referrence? Thank you very much. Jay
|
jollymcfats

msg:1474809 | 11:10 pm on May 7, 2005 (gmt 0) | You're probably looking at code that uses Prototype [prototype.conio.net], a javascript library. $() is just a function in the library, not special javascript syntax. In simple usage it works like this: function $(domID) { return document.getElementById(domID); } |
| (That's not the actual function definition, it's just a simplification.)
|
jmf314159

msg:1474810 | 11:20 pm on May 7, 2005 (gmt 0) | Thank you very much!
|
|
|