Ребят на завтра надо сдать задачку, задачка по яваскрипте на 5 минут для знающего. очень надо. =============== Создать с помощью java script дерево для показа иерархии fruits apple pineapple appricot pear lemon vegetables potatoes beatroot carrots pear нажатия на ссылку сворачивает или разворачивает перечень подразделений ==================== icq - 362380558
PHP: <html> <head> <script> function show_hide(id) { var element = document.getElementById(id); if (element) { if (element.className == 'hided') { element.setAttribute('class', ''); } else { element.setAttribute('class', 'hided'); } } } </script> <style> .hided { display: none; } </style> </head> <body> <a onclick="show_hide('fruits'); return false;" href="">Fruits</a><br /> <div id="fruits" class="hided"> <ul> <li>apple</li> <li>pineapple</li> <li>appricot</li> <li>pear</li> <li>lemon</li> </ul> </div> <a onclick="show_hide('vegetables'); return false;" href="">Vegetables</a><br /> <div id="vegetables" class="hided"> <ul> <li>potatoes</li> <li>beatroot</li> <li>carrots</li> <li>pear</li> </ul> </div> </body> </html>