I'm looking at Infragistic's code from a sample page and they have the following jQuery statement that is confusing me:
<table id="grid">
$("#grid").igGrid({ "caption" : "This is a caption for the grid"});
I know that $("#grid")
is selecting the table element, but what is .igGrid
? It looks like it's assigning an object (igGrid) that contains properties (?), but how? How is .igGrid
not flagged as an error?