desvergue-de-alexandro
js 12 lines 409 Bytes
Raw
1 const Utils = {
2 showAlert(containerId, message, type = 'error') {
3 const container = document.getElementById(containerId);
4 if (!container) return;
5 container.innerHTML = `<div class="alert alert-${type}">${message}</div>`;
6 },
7
8 clearAlert(containerId) {
9 const container = document.getElementById(containerId);
10 if (container) container.innerHTML = '';
11 }
12 };