Understanding the Colon (":") in jQuery Code

  • Thread starter Thread starter jeff1evesque
  • Start date Start date
  • Tags Tags
    Code
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
1 reply · 4K views
jeff1evesque
Messages
312
Reaction score
0
I've looked all over the web, and even downloaded a http://www.pdf-search-engine.com/jquery-pdf.html" (looks very useful), but I have a very simple question.

What does the colon ":" mean from the following three segment of code-

(1.)
SplitID : function()
{
return this.attr('id').split('-').pop();
},

(2)
Slideshow :
{
Ready : function()
{
}
}

Thanks,

JL
 
Last edited by a moderator:
Physics news on Phys.org
jeff1evesque said:
I've looked all over the web, and even downloaded a http://www.pdf-search-engine.com/jquery-pdf.html" (looks very useful), but I have a very simple question.

What does the colon ":" mean from the following three segment of code-

SplitID :function()
{
return this.attr('id').split('-').pop();
},

And,

Slideshow :
{
Ready : function()
{
}
}

Thanks,

JL

Property: Value

All javascript code is essentially one giant hash table.
 
Last edited by a moderator: