Subversion Repositories SmartDukaan

Rev

Rev 21090 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 21090 Rev 21092
Line 25... Line 25...
25
        success : function(response) {
25
        success : function(response) {
26
            $('#' + pos).html(response);
26
            $('#' + pos).html(response);
27
        }
27
        }
28
    });  
28
    });  
29
}
29
}
-
 
30
 
-
 
31
function loadMyProfile(pos){
-
 
32
	jQuery.ajax({
-
 
33
        type : "GET",
-
 
34
        url : "/Support/pmsa!myProfile",
-
 
35
        success : function(response) {
-
 
36
            $('#' + pos).html(response);
-
 
37
        }
-
 
38
    });  
-
 
39
}