Сообщение от Ruslan_xDD
|
$('ul li').click(function() {
$(this).find('ul').show();
});
|
Так он все дочерние ul откроет...
Как вариант...
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<!--
<link rel="stylesheet" type="text/css" href="tmp.css" />
-->
<style type="text/css">
</style>
<script type="text/javascript">
$(function (){
$('li').click(function (event){
$(this).children('ul').toggle();
event = event || window.event;
if (event.stopPropagation) {
event.stopPropagation();
} else {
event.cancelBubble = true;
}
});
});
</script>
</head>
<body>
<ul>
<li>Menu 1
<ul style="display: none;">
<li>Menu 1.1
<ul style="display: none;">
<li>Menu 1.1.1</li>
<li>Menu 1.1.2</li>
<li>Menu 1.1.3</li>
</ul>
</li>
<li>Menu 1.2</li>
<li>Menu 1.3</li>
</ul>
</li>
<li>Menu 1</li>
<li>Menu 1</li>
</ul>
</body>
</html>