Сообщение от Nikk
|
нашел решение
|
Не самое оптимальное...
Тогда хоть так.
<button onclick="replace(true);"/>Click to Replace</button>
<button onclick="replace();"/>Click to Replace2</button>
<div id = "div1" style="display:block">Text1</div>
<div id = "div2" style="display:none">Text2</div>
<script>
function replace(Type) {
document.getElementById("div1").style.display=(Type)? "block": 'none';
document.getElementById("div2").style.display=(Type)? "none": "block";
};
</script>