Files
ESPEasy/static/toasting.js

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);
}