3rd October, 12:17
[php]
$('#submit').qtip({
content:{
text:status_tip_html('loading',SYSMSG.M00002),
ajax:{
url:SYSMSG.G00001,
type:'post',
dataType:'json',
data:ajax_data,
success:function(data){
/* success */
if(data.status === 'success'){
jQuery(_this.commentlist_id+data.des.post_id).prepend(data.des.content);
/* I d want to set this qtip to hide in here, how to write the codes? */
}
}
}
}
});
[/php]
I am not so clear. could you tell me? thank you.
$('#submit').qtip({
content:{
text:status_tip_html('loading',SYSMSG.M00002),
ajax:{
url:SYSMSG.G00001,
type:'post',
dataType:'json',
data:ajax_data,
success:function(data){
/* success */
if(data.status === 'success'){
jQuery(_this.commentlist_id+data.des.post_id).prepend(data.des.content);
/* I d want to set this qtip to hide in here, how to write the codes? */
}
}
}
}
});
[/php]
I am not so clear. could you tell me? thank you.
