jquery 1.8.0を使用するようにこれを書き直す方法は? サイト全体で 1.8 ライブラリを使用しており、このスクリプトだけに jquery 1.4.4 が必要です。これを書き直すのを手伝ってください。このスクリプトのオリジナルはhttp://perishablepress.com/demos/slide-fade-content/#first-itemです
$(document).ready(function(){
$('.more').live('click',function(){
var href = $(this).attr('href');
if ($('#ajax').is(':visible')) {
$('#ajax').css('display','block').animate({height:'1px'}).empty();
}
$('#ajax').css('display','block').animate({height:'200px'},function(){
$('#ajax').html('<img class="loader" src="loader.gif" alt="">');
$('#ajax').load('slide-fade-content.html #'+href,function(){
$('#ajax').hide().fadeIn().highlightFade({color:'rgb(253,253,175)'});
});
});
return true;
});
});