I have been trying to use this inside an ajax function to refer the event target . but it seems that is not the way I think.
for example:
$('#test').live('click',function(){
     $.ajax({
         type:'post',
         url:
         data:...,
         success:function(mes){
             $(this).append('mes');
         }
     });
});
so here $(this) does not refer to the ('#test') selector. what does it refer to?? thanks for any explanation.
 
     
     
     
    