What's the difference between $get and $find in JavaScript?
Posted
by RoboShop
on Stack Overflow
See other posts from Stack Overflow
or by RoboShop
Published on 2010-04-28T01:34:12Z
Indexed on
2010/04/28
3:53 UTC
Read the original article
Hit count: 141
JavaScript
|asp.net-ajax
Hi,
I'm a .NET programmer who've just started to learn more about client side scripting, and I was wondering sometimes you use $get('value')
and $find('value')
and I've discovered that these are just shortcuts for document.getElementById('value')
and Sys.Application.findComponent('value')
, respectively.
However, I still don't understand: what is the difference between these two functions in JavaScript? What exactly are they looking up/retrieving when invoked?
Thanks in advance.
© Stack Overflow or respective owner