ロード時に折りたたまれたメニューを表示するように jquery を取得しようとしています。現在、それを拡大しています。それを変える最良の方法は何ですか?
以下のコードは、magento のレイヤード ナビゲーションです。
<?php if($this->canShowBlock()): ?>
<div class="block block-layered-nav">
<div class="block-title">
<strong><span class="catalog-layer-view-heading"><?php echo $this->__('BROWSE BY') ?></span></strong>
</div>
<div class="block-content">
<?php echo $this->getStateHtml() ?>
<?php if($this->canShowOptions()): ?>
<dl id="narrow-by-list">
<?php $_filters = $this->getFilters() ?>
<?php $i=0; foreach ($_filters as $_filter): $i++; ?>
<?php if($_filter->getItemsCount()): ?>
<dt id="filterlabel<?php echo $i;?>"><?php echo $this->__($_filter->getName()) ?> <span class="openthis openthis<?php echo $i;?>">(open)</span></dt>
<dd><?php echo $_filter->getHtml() ?></dd>
<script type="text/javascript" >
jQuery('#filterlabel<?php echo $i;?>').each(function(){
jQuery('.openthis<?php echo $i;?>').css({'display':'block'});
jQuery(this).toggle(function(){
jQuery(this).addClass('hided').next().slideUp(200);
jQuery('.openthis<?php echo $i;?>').css({'display':'none'});
},function(){
jQuery(this).removeClass('hided').next().slideDown(200);
jQuery('.openthis<?php echo $i;?>').css({'display':'block'});
})
});
</script>
<?php endif; ?>
<?php endforeach; ?>
</dl>
<script type="text/javascript">decorateDataList('narrow-by-list')</script>
<?php endif; ?>
</div>
</div>
<?php endif; ?>