mirror of
https://github.com/letscontrolit/ESPEasy.git
synced 2026-07-28 04:07:47 +00:00
10 lines
257 B
JavaScript
10 lines
257 B
JavaScript
function toasting() {
|
|
var x = document.getElementById('toastmessage');
|
|
x.innerHTML = 'Submitted';
|
|
x.className = 'show';
|
|
setTimeout(function() {
|
|
x.innerHTML = '';
|
|
x.className = x.className.replace('show', '');
|
|
}, 2000);
|
|
}
|