what's the difference between GetElementByID and findComponent in JavaScript?
- by RoboShop
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
$get = GetElementByID
$find = FindComponent
however, I still don't understand, what is the difference between these two functions in JavaScript?
Thanks in advance.