$(document).ready(function(){ if($('#news_content').length > 0 ){ // show detail --- $(".getNws").live("click", function(){ var did = $(this).attr("href"); $.getJSON('doGetNews.php',{did:did}, function(data){ $(".innerCnt2").fadeOut("fast", function(){ $(".innerCnt2 h1").html(data.title); $(".innerCnt2 .gdt").html(data.cd); $(".innerCnt2 #news_content").html(data.text); $(".innerCnt2").fadeIn(); }); $("#imgUPDL2").fadeOut("fast", function(){ $(this).css("background-image", "url("+data.img+")"); $(this).css("background-position", data.img_pos) $(this).fadeIn("fast"); }); }); }); $(".getSrch").live("click", function(){ var did = $(this).attr("href"); $.getJSON('doGetSearch.php',{did:did}, function(data){ $(".innerCnt2").fadeOut("fast", function(){ if(data.menuTitle){ $(".innerCnt2 h1").html(data.menuTitle); }else{ $(".innerCnt2 h1").html(data.title); } $(".innerCnt2 .gdt").html(data.cd); $(".innerCnt2 #news_content").html(data.text); $(".innerCnt2").fadeIn(); }); $("#imgUPDL2").fadeOut("fast", function(){ $(this).css("background-image", "url("+data.img+")"); $(this).css("background-position", data.img_pos) $(this).fadeIn("fast"); }); }); }); } });