Re: I can't find $get syntax information
- From: "John Kotuby" <jkotuby75@xxxxxxxxxxx>
- Date: Thu, 15 May 2008 12:50:33 -0400
Thank you Anthony,
That is VERY important to know.
I did not knowingly include any Microsoft JS files in my code.
When I look at the HTML source in the IE7 browser I can't find any function
declaration for $get() or a reference to the .js file.
But I have a bunch of 3rd party controls that that generate almost
unreadable JavaScript, so maybe I missed it.
I am now wondering if the IE browser simply interprets it correctly.
Have a good day.
"Anthony Jones" <Ant@xxxxxxxxxxxxxxxx> wrote in message
news:umB%23agqtIHA.1316@xxxxxxxxxxxxxxxxxxxxxxx
"John Kotuby" <jkotuby75@xxxxxxxxxxx> wrote in message
news:%23yzS$WqtIHA.3804@xxxxxxxxxxxxxxxxxxxxxxx
Hi all,
I was just looking at some example code in the VS2008 help for VB. In a
JavaScript example I came across some syntax that I didn't recognize and
could not find information about on the usual JS sites I use as
resources.
In a place where I expected to see
"document.getElementById('elementId')",
instead the Microsoft example use the syntax "$get('elementid')".
So I tried it in some of my code and it seems to work fine.
Can somebody explain this short-hand syntax to me or at least point to a
resource where I can read about it? It sure beats the heck out of typing
document.getElementById.
I just want to make sure I won't run into any compatibility problems if I
start using that syntax regularly.
Something in the JS files included by MS adds this function:-
function $get(id) { return document.getElementById(id); }
$get isn't defined by the script context.
--
Anthony Jones - MVP ASP/ASP.NET
.
- Follow-Ups:
- Re: I can't find $get syntax information
- From: George Ter-Saakov
- Re: I can't find $get syntax information
- References:
- I can't find $get syntax information
- From: John Kotuby
- Re: I can't find $get syntax information
- From: Anthony Jones
- I can't find $get syntax information
- Prev by Date: Re: I can't find $get syntax information
- Next by Date: Re: anyone good with web gridview control
- Previous by thread: Re: I can't find $get syntax information
- Next by thread: Re: I can't find $get syntax information
- Index(es):
Relevant Pages
|