Strict Standards: Resource ID#25 used as offset, casting to integer (25) in /home/tvoyweb/domains/tvoyweb.ru/public_html/forums/include/fm.class.php on line 401

Strict Standards: Resource ID#27 used as offset, casting to integer (27) in /home/tvoyweb/domains/tvoyweb.ru/public_html/forums/include/fm.class.php on line 401

Strict Standards: Resource ID#28 used as offset, casting to integer (28) in /home/tvoyweb/domains/tvoyweb.ru/public_html/forums/include/fm.class.php on line 401
ТвойWeb :: Версия для печати :: работа с текстом
ТвойWeb » WebMaster класс » HTML » работа с текстом

Страниц (1): [1]
 

1. Mallotig - 07 Мая, 2008 - 13:36:58 - перейти к сообщению
Доброе время суток! Кто-нибудь, подскажите как сделать так, чтобы при нажатии на ссылку изначально скрытый текст раскрывался под этой ссылкой без переходов на другие страницы.
2. Lonely wanderer - 07 Мая, 2008 - 15:39:59 - перейти к сообщению
CODE:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />
<title></title>
<script type="text/javascript">

function showId()
{
var myDiv = document.getElementById('id');
if(myDiv.style.display == 'none')
{
myDiv.style.display = 'block';
} else {
myDiv.style.display = 'none';
}
return false;
}

</script>
</head>

<body>

<a href='javascript:;' onclick=showId()>Ссылка</a>

<div id="id" style='display: none'>
Скрытый текст
</div>

</body>
</html>

Форум на AlfaSpace.NET


Powered by ExBB
ExBB FM 1.0 RC1 by TvoyWeb.ru
InvisionExBB Style converted by Markus®

[Script Execution time: 0.0249]     [ Gzipped ]