Web M&M
https://mam.matfyz.cz
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
448 B
18 lines
448 B
function showSelectedItemForm(sel,id){
|
|
var option;
|
|
var name;
|
|
var div;
|
|
Array.from(sel.options).forEach(function(option){
|
|
console.log(option);
|
|
name = 'pridat-'+option.value+'-'+id;
|
|
div = document.getElementById(name);
|
|
console.log(div);
|
|
div.style.display = 'none';
|
|
});
|
|
name = sel.options[sel.selectedIndex].value;
|
|
name = 'pridat-'+name+'-'+id;
|
|
div = document.getElementById(name);
|
|
console.log(div);
|
|
div.style.display = 'block';
|
|
|
|
}
|
|
|