Do accordion. But a problem arises - with the healer on the "header", it shows what is needed. But as soon as the mouse is shifted, it closes itself. How to make it appear and not come true? and hid only when you click on another element of the acorrdion
<script type="text/javascript"> $(function(){ $('.content dd').hide(); $('.content dt').hover( function(){ $('.content dt').click(function(){ $(this).next().show(); return false; }).next().hide(); }); }); </script> <div class="content"> <dl> Аккордион <dt>Новость первая <dd>Текст первой новости <dt>Новость вторая <dd>Текст второй новости <dt>Новость третья <dd>Текст третьей новости </dl> </div>