Добавил:
$("#floor:not(.active)").slideToggle("slow");
$('#floor').addClass("active");
Теперь работает. Нормальное ли это решение?
<script>
$(document).ready(function(){
$('#bild-type-panel').click(function(){
$("#floor:not(.active)").slideToggle("slow");
$('#floor').addClass("active");
$.ajax({
url: "floor/floor-panel.html",
cache: false,
success: function(html){
$("#floor").html(html);
}
});
});
$('#bild-type-brick').click(function(){
$('#floor').slideToggle("slow");
$("#floor:not(.active)").slideToggle("slow");
$('#floor').addClass("active");
$.ajax({
url: "floor/floor-brick.html",
cache: false,
success: function(html){
$("#floor").html(html);
}
});
});
});
</script>