Код: Выделить всё
function ToggleList(IDS) {
var CState = document.getElementById(IDS);
if (CState.style.display != "block") { CState.style.display = "block"; }
else { CState.style.display = "none"; }
}
.divInfo
{
display: none;
}
Text
Show More
Additional Test
Подробнее здесь: https://stackoverflow.com/questions/132 ... -show-hide