[ BREAKING NEWS BANNER: SEVERE COLD ADVISORY - JAN 3, 2026 ] <--- NEVER CHANGES [ TNW LIVE WEATHER CENTER | 08:55 PM CST ] <--- NEVER CHANGES ------------------------------------------------------------ [ MAIN PORTAL (TNWEATHER.COM) ] [ PANEL 1 ] <--- LOGO (NORMAL) [ Live Interactive Radar & Scoring ] [ PANEL 2 ] <--- LOGO (NORMAL) [ (Better Work HUD Active in Gold) ] [ PANEL 3 ] <--- FARM (NORMAL) ------------------------------------------------------------

Timeline: What to Expect With Multiple Rounds of Storms Possible for Start of Holiday Weekend

Timeline: What to Expect With Multiple Rounds of Storms Possible for Start of Holiday Weekend

Source NBC Chicago

A severe thunderstorm watch was issued for much of the Chicago area Friday and will last for several hours, bringing with it much uncertainty. With much of the Chicago area already under a severe weather alert as an intensifying line of storms races toward northern Illinois, what can you expect and when as Memorial Day weekend begins? A severe thunderstorm watch was issued for much of the Chicago area Friday and will last for several hours, bringing with it much uncertainty.


Here's a look at what to know about the forecast:

Friday morning All of northern Illinois was placed under a severe thunderstorm watch until 1 p.m., according to the Storm Prediction Center. The National Weather Service warned around 6:45 a.m. that a line of severe storms would move into northern Illinois "within the next few hours" and that line carries with it the threat for damaging winds, large hail, and possibly tornadoes. The biggest threat will take place through 9 a.m. in areas along and west of Interstate 39, however. "Have multiple ways to get warnings," NWS tweeted.

This Message will be forwarded directly to the Operations Department Director Manager at TNW

Our breaking News center team is always here 24/7. Don't hesitate to send Weather News that is breaking in your local Area.

// Function to update the Time on the Left setInterval(() => { const clock = document.getElementById('live-clock'); clock.innerText = new Date().toLocaleTimeString(); }, 1000); // Function to fetch weather by IP (No Cookies) async function getWeatherByIP() { try { const geo = await fetch('https://ipapi.co/json/').then(res => res.json()); // Using Open-Meteo for clean weather data const weather = await fetch(`https://api.open-meteo.com/v1/forecast?latitude=${geo.latitude}&longitude=${geo.longitude}¤t_weather=true`).then(res => res.json()); document.getElementById('weather-scroll').innerText = `LOCAL WEATHER FOR ${geo.city}: ${weather.current_weather.temperature}°C | FLIP STATUS: CLEAR | WINDS: ${weather.current_weather.windspeed}km/h | PUBLIC RACING DATA STREAM ACTIVE`; } catch (err) { document.getElementById('weather-scroll').innerText = "DATA FEED ERROR: RE-ROUTING THROUGH NORTH AURORA BACKUP..."; } } // THE "ALIVE" TRIGGER: Use this to pop up the red banner function setLiveStatus(isLive) { const alertBar = document.getElementById('press-alert'); if (isLive) { alertBar.classList.add('active'); } else { alertBar.classList.remove('active'); } } // Run Infrastructure getWeatherByIP(); // Trigger a test "Live" state after 6 seconds setTimeout(() => setLiveStatus(true), 6000);