MastodonStartpage/web/mustard/js/alerta.js
pezcurrel 85876775c4 ...
2020-05-07 07:24:56 +02:00

4 lines
261 B
JavaScript

function alerta(tit,msg) {
document.getElementById('popupcont').innerHTML='<h3>'+tit+'</h3>'+msg+'<input type="button" value="Ok" onClick="document.getElementById(\'popup\').style.display=\'none\'">';
document.getElementById('popup').style.display='table';
}