15 lines
297 B
JavaScript
Raw Normal View History

2016-10-16 21:53:15 +02:00
function change_view(idContainer){
var element_o = document.getElementById(idContainer);
if (element_o.style.display != "none"){
element_o.style.display = "none";
}
else{
element_o.style.display = "block";
}
}