このチュートリアルを使用して、 DIVを非表示/表示しました。残念ながら、何らかの理由で機能しなくなりました(その間にコードのいくつかの変更を行いました)...問題の原因がわかりますか?jsfiddle:http ://jsfiddle.net/Grek/C8B8g/ 以下の2つのスクリプトの間でおそらく競合があると思います。
function showonlyone(thechosenone) {
$('.textzone').each(function(index) {
if ($(this).attr("id") == thechosenone) {
$(this).show(200);
}
else {
$(this).hide(200);
}
});
}
$('.activity-title a').click(function(){
$('.textzone').fadeOut(2000);
var region = $(this).attr('data-region');
$('#' + region).fadeIn(2000);
})