Sammlung
This commit is contained in:
14
Sammlung/p1/test1/content/main.js
Normal file
14
Sammlung/p1/test1/content/main.js
Normal file
@ -0,0 +1,14 @@
|
||||
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";
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user