Друзья еще раз спасибо за помощь, все получилось. Вот рабочий вариант:
<script type="text/javascript">
var icon = $('.spo1');
icon.find('span').text('+').addClass('spo1a');
$('.spo1').click(function()
{
var $other_spoilers = $('a.spo1').not(this);
$other_spoilers.siblings().hide('fast');
$other_spoilers.find('span').text('+').removeClass ('spo1b').addClass('spo1a');
$(this).siblings().toggle('fast', function() {
var $icon = $(this).siblings('a.spo1').find('span')
if ($icon.text() == '+') {
$icon.text('×').removeClass('spo1a').addClass('sp o1b')
} else {
$icon.text('+').removeClass('spo1b').addClass('spo 1a')
}
})
return false;
});
</script>
|