Giá bán:5,7tr -Liên
hệ: Anh Nam -tel:0904539080,Mua bán tại nhà
jQuery(document).ready(function(){
// view static
jQuery.post(WEB_DIR+"ajax.php?act=item&code=viewing_statistic",{
item_id : 175052,
page_id : 7766,
user_id : 53343
},
function(json){
if(json['statistic']!=''){
document.getElementById('detail_view_statistic').innerHTML=json['statistic'];
}
if(json['online_status']!=''){
document.getElementById('online_status').innerHTML = json['online_status'];
//
}
},"json"
);
//load all feedback
jQuery.ajax({
type: "GET",
url: WEB_DIR+"ajax.php?act=comment&code=display_feedback&id="+item_id+"",
success: function(data){
jQuery("#comment_list").html(data);
jQuery('div.bubbleInfo').each(function () {
activeMenu(this.id);
});
jQuery('div.profile_load').livequery("mouseover",function(){
user_profile_ids = '';
var user_id = this.lang;
var cid = this.id;
jQuery('div.bubbleInfo').each(function () {
if(this.lang!='' && this.lang>0 &&!user_profile_arr[this.lang]){
user_profile_arr[this.lang]=this.lang;
user_profile_ids+=(user_profile_ids!=''?',':'')+''+this.lang+'';
}
else{
this.lang = '';
}
});
if(user_profile_ids!=''){
var json_url = WEB_DIR+"ajax.php?act=user&code=mini_profile&user_ids="+user_profile_ids;
if(jQuery.jCache.hasItem(json_url)){
var data = eval(jQuery.jCache.getItem(json_url));
if(data[user_id]){
parse_miniprofile_data(data[user_id], cid);
}
for(i in data){
profile_data[i] = data[i];
}
}
else{
jQuery.post(WEB_DIR+"ajax.php?act=user&code=mini_profile",
{user_ids:user_profile_ids},
function(data){
if(data[user_id]){
parse_miniprofile_data(data[user_id], cid);
}
jQuery.jCache.setItem(json_url, data);
for(i in data){
profile_data[i] = data[i];
}
}
,"json"
);
}
}
if(profile_data[user_id]){
parse_miniprofile_data(profile_data[user_id], cid);
}
});
}
});
});