> i don't know why this is not working but the later is working well
> please tell me what is wrong with this
>
> // not working
> SocialSite.Home.UserInfo =
> {
>    options : {
>        beforeSubmit: this.friendRequest,
>         success:  this.friendResponse
>    },
>     friendRequest : function(formData, jqForm, options)
>     {
>     },
>     friendResponse : function (responseText, statusText) {
>     }
> };

'this' in your options object is not referencing what you need.
Change that part to be like your example that is working.

Reply via email to