Possible Duplicate:
What does ':' do in JavaScript?
I'm trying to learn jQuery and I noticed the following syntax in someone's code. It would be great if some one can explain it to me.
functionName: function(form, callback)
    {   
        form.submit(function(event) {
            event.preventDefault();
            callback(TestPageUtils.getFormParams(form));
            return false;
        });
    }
 
     
     
     
    