Can someone explain the usage of the dollar sign here..
var updateProgressDiv = $get('updateProgressDiv');
scroll down to the functions.. http://mattberseth.com/blog/2007/05/ajaxnet_example_using_an_updat.html
Can someone explain the usage of the dollar sign here..
var updateProgressDiv = $get('updateProgressDiv');
scroll down to the functions.. http://mattberseth.com/blog/2007/05/ajaxnet_example_using_an_updat.html
It's merely part of the function name -- $ is allowed in JavaScript identifiers, so ($get) is the full function name.
$get is jQuery syntax for fetching an element. It has nothing to do with C#.
This is asp.net ajax shortcut:
$get Shortcut Method
Provides a shortcut to the getElementById method of the Sys.UI.DomElement class. This member is static and can be invoked without creating an instance of the class.
See more information about