Круто! Спасибо! ТОлько вот когда подставляю к ссылкам тег <p> он автоматом присваивает стиль display:none;
Еще минус. При нажатии ссылки все время отправляет вверх страницы.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.4.2.min.js"></script>
<script>
$(document).ready(function() {
$(".one").hide();
$(".too").hide();
//toggle the componenet with class msg_body
$(".textone").click(function(){
var content = $('.too');
$('.one').slideToggle(500);
if(content.css('display')=='block'){
content.slideUp(500);
}
});
$(".texttoo").click(function(){
var content = $('.one');
$('.too').slideToggle(500);
if(content.css('display')=='block'){
content.slideUp(500);
}
});
});
</script>
</head>
<body>
Меню:
<ul>
<li><a href="#" class="textone">Button</a></li>
<li><a href="#" class="texttoo">Button2</a></li>
</ul>
Текст:
<a href="#" class="textone">Button</a>
<a href="#" class="texttoo">Button2</a>
<div class="one">Lorem ipsum dolor sit amet</div>
<div class="too">Lorem ipsum dolor sit amet2</div>
</body>
</html>