Thông báo ngừng, giảm mức cung cấp điện trên địa bàn 79King đăng nhập từ ngày 13/01 đến ngày 18/01/2026
NGÀY | THỜI GIAN BẮT ĐẦU | THỜI GIAN KẾT THÚC | KHU VỰC |
13/01/2026 | 08:00 | 15:00 | Một phần phường Mỹ Thới (Khu vực hẻm da giày) |
13/01/2026 | 08:00 | 13:00 | Một phần phường Bình Đức (Khu vực TĐC Bình Đức) |
13/01/2026 | 08:00 | 17:00 | Một phần xã Bình hòa (Khu vực dân cư 9 Quân - Chà Và) |
14/01/2026 | 08:15 | 09:45 | Một phần phường Long Xuyên (đường Hai Bà Trưng đến Ngô Gia Tự) |
14/01/2026 | 09:45 | 15:00 | Các khu vực tại phường Bình Đức (Trạm bơm Số 1, Lò đậu Ông Long, từ Cây xăng Hòa Bình đến cầu Trà Ôn) |
14/01/2026 | 08:00 | 17:00 | Các xã: An Châu, Cần Đăng, Vĩnh Hanh, Vĩnh An (nhiều TBA khác nhau) |
14/01/2026 | 08:00 | 18:00 | Một phần khu phố 12 Dương Đông; một phần xã Chợ Mới và xã Nhơn Mỹ |
15/01/2026 | 07:30 | 13:00 | Các khu vực phường Long Xuyên (các đường: Dương Diên Nghệ, Mương Khai, Yết Kiêu, Cô Giang, Cô Bắc) |
15/01/2026 | 08:00 | 17:00 | Một phần xã Bình Hòa (Nhiều TBA: Nước cấp 1, Vạn Thạnh, 9 Quân, 6 Mộng, 3 Chí...) |
16/01/2026 | 08:30 | 16:00 | Ban Quản lý các khu kinh tế, Xí nghiệp Cơ khí 79 Kinh casino trực tuyến; một phần khu vực Mương Tường |
18/01/2026 | 07:30 | 18:00 | Một phần phường Long Xuyên (Hà Hoàng Hổ, Khu Golden, Khu Hành chính cũ); một phần phường Bình Đức |
18/01/2026 | 05:30 | 18:30 | Phường Châu Đốc; toàn phường Vĩnh Tế |
/vi/thong-bao-ngung-giam-muc-cung-cap-dien-tren-dia-ban-tinh-an-giang-tu-ngay-1301-den-ngay-18012026
";
var footstr = "";
var newstr = document.all.item(text).innerHTML;
//var newstr = document.getElementById(text).innerHTML;
var oldstr = document.body.innerHTML;
document.body.innerHTML = headstr + newstr + footstr;
window.print();
document.body.innerHTML = oldstr;
return false;
}
function printDiv2(text) {
var content = document.getElementById(text).innerHTML;
var printWindow = window.open('', '', 'height=600,width=800');
printWindow.document.write('
');
printWindow.document.write('');
printWindow.document.write(content);
printWindow.document.write('');
printWindow.document.close();
printWindow.print();
}
function share_fb(url) {
window.open('https://www.facebook.com/sharer/sharer.php?u='+url,'facebook-share-dialog',"width=626, height=436")
}
function toggleBackgroundColor() {
const element = document.getElementById('contrast');
const currentColor = window.getComputedStyle(element).backgroundColor;
if (currentColor === 'rgb(220, 220, 220)') {
element.style.backgroundColor = '#fff';
} else {
element.style.backgroundColor = 'rgb(220, 220, 220)';
}
}
var liActive = Array.from(document.querySelectorAll('.posts-list-noibat .post-title'));
if (Array.isArray(liActive) && liActive.length ) {
liActive[0].classList.add('active');
}
function increaseFontSize() {
var textElement = document.getElementById('text');
var currentSize = window.getComputedStyle(textElement, null).getPropertyValue('font-size');
var newSize = parseFloat(currentSize) + 2;
if (newSize <= 40) {
textElement.style.fontSize = newSize + 'px';
}
}
function decreaseFontSize() {
var textElement = document.getElementById('text');
var currentSize = window.getComputedStyle(textElement, null).getPropertyValue('font-size');
var newSize = parseFloat(currentSize) - 2;
if (newSize >= 12) {
textElement.style.fontSize = newSize + 'px';
}
}
function resetFontSize() {
var textElement = document.getElementById('text');
textElement.style.fontSize = '18px';
}