スライドをクリックすると、別のスライドが開いているかどうかを jQuery で確認して閉じます。コードの 90% を記述しましたが、何かが不足しています。以下の私のHTMLを参照してください:
これが私の 挑戦です!
//first slide
$('#one').toggle(function(){
$('.content').animate({width:'42%'});
}, function(){
$('.content').animate({width:'0%'});
});
//second slide
$('#two').toggle(function(){
$('.content1').animate({width:'42%'});
}, function(){
$('.content1').animate({width:'0%'});
});
//the condition ,here is the chalenge
$(function(){
$('#two').click(function(){
var two = $('.content').innerWidth();
//when the users click the second slide i want that jquery checks if another panel is open(in my case .content) and close it :D
});
});