Пожалуйста:
Код:
<script type="text/javascript" language="javascript">
//<!--
window.onload = function() {
* *var parent = document.getElementsByTagName('em');
****for (var i = 0; i < parent.length; i++) {
*parent[i].style.fontFamily = 'Georgia, Times New Roman, Times, serif';
*parent[i].style.backgroundColor = '#E1E4F3';
*for (var list = parent[i].firstChild; list; list = list.nextSibling) {
// * * * * list.lastChild.style.display = 'none';
* * *list.onclick = function() {
* *if(this.lastChild.style.display == 'none') {
* * * * * this.lastChild.style.display = 'block';
* * *****} else {
* * * * * this.lastChild.style.display = 'none';
* * *****}
* * *}
* *****}
****}
}
//-->
</script>
<div>List<div style="display:none">El1</div></div>