Files
textie/script.js
10Develops fa3c3931a0 Site update
2019-12-12 03:01:45 +04:00

11 lines
338 B
JavaScript

window.onload = function(){
document.onclick = function(e){
if(e.target.className != "dropdown"){
document.getElementsByClassName("dropdown-content")[0].style -= "display: block;";
}
};
};
function ShowDropdown(){
document.getElementsByClassName("dropdown-content")[0].style = "display: block;";
}