Connect with us

Wisconsin

Wisconsin Democrats say defeat of GOP amendments bodes well for November

Published

on

Wisconsin Democrats say defeat of GOP amendments bodes well for November


Wisconsin Democrats are celebrating the lopsided defeat of two Republican-backed referendums Tuesday, saying the results bode well for November’s general election.

The referendums would have amended the state constitution to require a governor to get legislative approval before spending federal funds on things like disaster response.

According to unofficial results posted by the Associated Press, both proposals failed by margins of 15 percentage points.

Stay informed on the latest news

Sign up for WPR’s email newsletter.

Advertisement

The outcome was unusual for constitutional amendments, which typically pass.
In April, for example, voters approved two referendums that amended the Wisconsin Constitution to bar local clerks from using private grants or private employees to run elections. They passed by margins of about 9 and 17 percentage points.

Speaking to WPR at this year’s Farm Technology Days in Cadott, Democratic Party of Wisconsin Chair Ben Wikler said referendum questions normally “just sail through.” But this year, he said the state party, and groups like Wisconsin Conservation Voters, Wisconsin Farmers Union and the Wisconsin League of Women Voters hammered a “Vote No” message for months. 

“So, they all said ‘no’ with one voice and the result was that, for voters that voted in August, they knew what these amendments were about,” said Wikler. “They knew there was a reason to get out and cast a ballot, and overwhelmingly, they rejected these constitutional amendments and affirmed that they want a governor to do what Gov. Evers has done, which is to make use of federal emergency funds to actually help people in the state get through hard times.”

Advertisement

Wikler said the overwhelming response from voters was surprising, even to him. 

“I think this will be a big jolt of enthusiasm, and I think it bodes well for the chance for Democrats to win up and down the ballot,” Wikler said.

Voters fill out ballots Tuesday, Aug. 13, 2024, in Fort Atkinson, Wis. Angela Major/WPR

Republican state Rep. Robert Wittke, R-Racine, was one of the lead sponsors of the resolution that led to Tuesday’s amendment questions. In a written statement, he said he’s disappointed with the result.

“This was not a partisan issue but one that sought to promote good governance in spending undesignated federal dollars that come into the state,” said Wittke. “Supporters of good governance were outspent by those who exaggerated the intent of the questions — and our message failed. It’s unfortunate, but we gave the people a chance to decide and now we move on.”

Rick Esenberg, who heads the conservative Wisconsin Institute for Law and Liberty, blamed the loss on “out-of-state, far-left special interests” who he said “flooded the airwaves with misleading ads to influence decision making in Wisconsin.” 

Advertisement

Wikler contends criticisms from Republicans about Democrats misleading voters “is a little rich.” He said the ballot questions were written in a way to confuse voters, and they were put on the August primary ballot by Republicans in hopes of getting a victory in a typically low-turnout election.

Instead, Democrats from the state to local level organized against them. Gloria Hochstein, who chairs the Wisconsin Democratic Party’s rural caucus, said that in the April election, the party didn’t pay enough attention to referendums.

“I think in April, we were blindsided,” she said. “We didn’t get busy worrying about those amendments that were on the April ballot until weeks before the ballots were coming out.”

Hochstein said she and other Democratic party leaders “learned our lesson” when they found out about the upcoming questions. At the state Democratic Party’s annual convention in June, an administrative committee voted to endorse a campaign aimed at getting people to “vote no” on Aug. 13, which paid off. 

“I think voting no on the amendment was a unifying thing that brought people out to vote,” said Hochstein. “Even people who didn’t have a primary.”

Advertisement



Source link

Advertisement

Wisconsin

AMBER ALERT: Police say eight-year-old Wisconsin girl is missing

Published

on

AMBER ALERT: Police say eight-year-old Wisconsin girl is missing


Police believe she is in a vehicle last seen driving Friday afternoon in Monroe County.

Advertisement

AMBER ALERT: Police say eight-year-old Wisconsin girl is missing

Police believe she is in a vehicle last seen driving Friday afternoon in Monroe County.

Advertisement

Updated: 6:01 AM CDT Apr 4, 2026

Editorial Standards

Advertisement

An AMBER Alert is out for a Wisconsin girl.Police say eight-year-old Irene Lentz from Wautoma may be with Joseph Nicpon Jr. and Betty Lentz.Authorities believe Irene is in a 2005 Blue Buick Terraza with the license plate number BCU3028. Police say the vehicle was last seen at approximately 12:55 p.m. Friday driving westbound on I-90 in Monroe County near Sparta.If anybody knows where Irene may be, they are asked to immediately call the Wautoma Police Department at (920) 787-3321.

An AMBER Alert is out for a Wisconsin girl.

Police say eight-year-old Irene Lentz from Wautoma may be with Joseph Nicpon Jr. and Betty Lentz.

Advertisement

Screenshot

Wisconsin Crime Network

Police believe Irene Lentz is in this 2005 Blue Buick Terraza with the license plate number BCU3028. Authorities say the vehicle was last seen at approximately 12:55 p.m. Friday driving westbound on I-90 in Monroe County near Sparta.

Authorities believe Irene is in a 2005 Blue Buick Terraza with the license plate number BCU3028. Police say the vehicle was last seen at approximately 12:55 p.m. Friday driving westbound on I-90 in Monroe County near Sparta.

Advertisement

If anybody knows where Irene may be, they are asked to immediately call the Wautoma Police Department at (920) 787-3321.

Advertisement

`;
}

function refreshWeatherIframe(containerId) {
var iframeId = ‘weather-iframe-‘ + containerId;
var iframe = document.getElementById(iframeId);
if (iframe && iframe.src) {
var originalSrc = iframe.src;
iframe.src = originalSrc + (originalSrc.indexOf(‘?’) > -1 ? ‘&’ : ‘?’) + ‘t=” + Date.now();
}
}

function initializeWeatherBox(container) {
var containerId = container.getAttribute(“data-container-id’);
var isWeatherBoxV2 = containerId === ‘home-weather-v2’;

function switchWeatherTab(tabName, clickedElement) {
container.querySelectorAll(‘[data-tab-id]’).forEach(function(tab) {
tab.classList.remove(‘open’);
tab.setAttribute(‘aria-selected’, ‘false’);
});

Advertisement

clickedElement.classList.add(‘open’);
clickedElement.setAttribute(‘aria-selected’, ‘true’);

container.querySelectorAll(‘[data-content-id]’).forEach(function(content) {
content.style.display = ‘none’;
content.setAttribute(‘hidden’, ‘true’);
});

var targetContent = container.querySelector(‘[data-content-id=”‘ + tabName + ‘”]’);
if (targetContent) {
targetContent.style.display = ‘block’;
targetContent.removeAttribute(‘hidden’);
}
}

function loadWeatherData() {
// If weather data is already being loaded, wait for it
if (window.weatherDataPromise) {
window.weatherDataPromise.then(function(data) {
if (data && data.data) {
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
}
});
return;
}

var location = { zip: window.DEFAULT_ZIPCODE };

Advertisement

try {
var storedLocations = localStorage.getItem(‘hrst.zip.history’);
if (storedLocations) {
var locations = JSON.parse(storedLocations);
if (locations && locations.length > 0) {
location = locations[0];
}
}
} catch (e) {}

var apiUrl = (window.DEWY_HOSTNAME || ”) + ‘/api/v1/weather/full/’ + location.zip;

if (window.fetch) {
window.weatherDataPromise = fetch(apiUrl)
.then(function(response) { return response.json(); })
.then(function(data) {
if (data && data.data) {
var article = container.closest(‘.article–wrapper’);
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
return data;
}
})
.catch(function(error) {
console.error(‘Error loading weather:’, error);
// Reset to unknown background on error
updateWeatherBackground(‘unknown’);
});
}
}

function updateWeatherAlertsBar(weatherData) {
var weatherWatchHeader = container.querySelector(‘.weather-watch-header’);
if (!weatherWatchHeader) return;

var weatherWatchText = weatherWatchHeader.querySelector(‘.weather-watch-text’);
var weatherWatchLink = weatherWatchHeader.querySelector(‘.weather-watch-link’);

Advertisement

if (weatherData.alerts_count > 0) {
weatherWatchHeader.className=”weather-watch-header has-alerts”;
if (weatherWatchText) {
weatherWatchText.textContent = `Weather Alerts (${weatherData.alerts_count})`;
}
if (weatherWatchLink) {
if (!weatherWatchLink.getAttribute(‘data-initial-href’)) {
weatherWatchLink.setAttribute(‘data-initial-href’, weatherWatchLink.getAttribute(‘href’));
weatherWatchLink.setAttribute(‘data-initial-onclick’, weatherWatchLink.getAttribute(‘onclick’) || ”);
}
weatherWatchLink.setAttribute(‘href’, “https://www.wisn.com/alerts”);
weatherWatchLink.setAttribute(‘onclick’, “return handleWeatherLinkClick(event, ‘click_alerts’, ‘click’, ‘mobile-weather’, “https://www.wisn.com/alerts”);”);
}
} else {
weatherWatchHeader.className=”weather-watch-header”;
if (weatherWatchText) {
weatherWatchText.textContent = containerId === ‘home-weather-v2’ ? ‘Watch Latest Forecast’ : ‘Latest Forecast’;
}
if (weatherWatchLink) {
var initialHref = weatherWatchLink.getAttribute(‘data-initial-href’);
var initialOnclick = weatherWatchLink.getAttribute(‘data-initial-onclick’);
if (initialHref) {
weatherWatchLink.setAttribute(‘href’, initialHref);
}
if (initialOnclick) {
weatherWatchLink.setAttribute(‘onclick’, initialOnclick);
}
}
}
}

function updateCurrentWeather(weatherData) {
if (weatherData.current) {
var tempValue = weatherData.current.temp_f || ”;
var skyValue = weatherData.current.sky || ”;
var feelsLikeValue = weatherData.current.feels_like_f || weatherData.current.temp_f || ”;

var tempEl = container.querySelector(‘.weather-grid–current-temp-value’);
if (tempEl) {
tempEl.textContent = tempValue;
tempEl.setAttribute(‘aria-label’, tempValue + ‘ degrees Fahrenheit’);
}

var iconEl = container.querySelector(‘.weather-grid–current-icon’);
if (iconEl && weatherData.current.icon_name) {
iconEl.className=”weather-grid–current-icon weather-current-icon icon icon-weather-” + weatherData.current.icon_name;
}

var skyEl = container.querySelector(‘.weather-grid–sky’);
if (skyEl) {
skyEl.textContent = skyValue;
skyEl.setAttribute(‘aria-label’, ‘Current condition: ‘ + skyValue);
}

Advertisement

var feelsEl = container.querySelector(‘.weather-grid–feels’);
if (feelsEl) {
feelsEl.textContent = feelsLikeValue + ‘°F’;
feelsEl.setAttribute(‘aria-label’, feelsLikeValue + ‘ degrees Fahrenheit’);
}

var weatherContainer = container.querySelector(‘.weather-temp-container’);
if (weatherContainer) {
var summary = ‘Current temperature ‘ + tempValue + ‘ degrees Fahrenheit, ‘ +
skyValue + ‘, feels like ‘ + feelsLikeValue + ‘ degrees’;
weatherContainer.setAttribute(‘aria-label’, summary);
}

updateWeatherBackground(weatherData.current.icon_name);
}
}

function updateWeatherBackground(iconName) {
try {
var bgPath = weatherImages.backgrounds[iconName] || weatherImages.backgrounds.unknown;
container.style.backgroundImage=”url(” + bgPath + ‘)’;
} catch (e) {
console.log(‘Error updating weather background:’, e);
}
}

function updateForecastTabs(weatherData) {
var visibleItems = isWeatherBoxV2 ? 6 : 5;

Advertisement

if (weatherData.hourly) {
var hourlyContainer = container.querySelector(‘.weather-hourly-forecast’);
if (hourlyContainer) {
var html=””;
var maxHours = Math.min(visibleItems, weatherData.hourly.length);

for (var i = 0; i 0 ? currentIndex – 1 : tabs.length – 1;
tabs[prevIndex].focus();
break;
case ‘ArrowRight’:
e.preventDefault();
var nextIndex = currentIndex

`;
}

function refreshWeatherIframe(containerId) {
var iframeId = ‘weather-iframe-‘ + containerId;
var iframe = document.getElementById(iframeId);
if (iframe && iframe.src) {
var originalSrc = iframe.src;
iframe.src = originalSrc + (originalSrc.indexOf(‘?’) > -1 ? ‘&’ : ‘?’) + ‘t=” + Date.now();
}
}

function initializeWeatherBox(container) {
var containerId = container.getAttribute(“data-container-id’);
var isWeatherBoxV2 = containerId === ‘home-weather-v2’;

Advertisement

function switchWeatherTab(tabName, clickedElement) {
container.querySelectorAll(‘[data-tab-id]’).forEach(function(tab) {
tab.classList.remove(‘open’);
tab.setAttribute(‘aria-selected’, ‘false’);
});

clickedElement.classList.add(‘open’);
clickedElement.setAttribute(‘aria-selected’, ‘true’);

container.querySelectorAll(‘[data-content-id]’).forEach(function(content) {
content.style.display = ‘none’;
content.setAttribute(‘hidden’, ‘true’);
});

var targetContent = container.querySelector(‘[data-content-id=”‘ + tabName + ‘”]’);
if (targetContent) {
targetContent.style.display = ‘block’;
targetContent.removeAttribute(‘hidden’);
}
}

function loadWeatherData() {
// If weather data is already being loaded, wait for it
if (window.weatherDataPromise) {
window.weatherDataPromise.then(function(data) {
if (data && data.data) {
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
}
});
return;
}

Advertisement

var location = { zip: window.DEFAULT_ZIPCODE };

try {
var storedLocations = localStorage.getItem(‘hrst.zip.history’);
if (storedLocations) {
var locations = JSON.parse(storedLocations);
if (locations && locations.length > 0) {
location = locations[0];
}
}
} catch (e) {}

var apiUrl = (window.DEWY_HOSTNAME || ”) + ‘/api/v1/weather/full/’ + location.zip;

if (window.fetch) {
window.weatherDataPromise = fetch(apiUrl)
.then(function(response) { return response.json(); })
.then(function(data) {
if (data && data.data) {
var article = container.closest(‘.article–wrapper’);
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
return data;
}
})
.catch(function(error) {
console.error(‘Error loading weather:’, error);
// Reset to unknown background on error
updateWeatherBackground(‘unknown’);
});
}
}

function updateWeatherAlertsBar(weatherData) {
var weatherWatchHeader = container.querySelector(‘.weather-watch-header’);
if (!weatherWatchHeader) return;

Advertisement

var weatherWatchText = weatherWatchHeader.querySelector(‘.weather-watch-text’);
var weatherWatchLink = weatherWatchHeader.querySelector(‘.weather-watch-link’);

if (weatherData.alerts_count > 0) {
weatherWatchHeader.className=”weather-watch-header has-alerts”;
if (weatherWatchText) {
weatherWatchText.textContent = `Weather Alerts (${weatherData.alerts_count})`;
}
if (weatherWatchLink) {
if (!weatherWatchLink.getAttribute(‘data-initial-href’)) {
weatherWatchLink.setAttribute(‘data-initial-href’, weatherWatchLink.getAttribute(‘href’));
weatherWatchLink.setAttribute(‘data-initial-onclick’, weatherWatchLink.getAttribute(‘onclick’) || ”);
}
weatherWatchLink.setAttribute(‘href’, “https://www.wisn.com/alerts”);
weatherWatchLink.setAttribute(‘onclick’, “return handleWeatherLinkClick(event, ‘click_alerts’, ‘click’, ‘sidelist-weather’, “https://www.wisn.com/alerts”);”);
}
} else {
weatherWatchHeader.className=”weather-watch-header”;
if (weatherWatchText) {
weatherWatchText.textContent = containerId === ‘home-weather-v2’ ? ‘Watch Latest Forecast’ : ‘Latest Forecast’;
}
if (weatherWatchLink) {
var initialHref = weatherWatchLink.getAttribute(‘data-initial-href’);
var initialOnclick = weatherWatchLink.getAttribute(‘data-initial-onclick’);
if (initialHref) {
weatherWatchLink.setAttribute(‘href’, initialHref);
}
if (initialOnclick) {
weatherWatchLink.setAttribute(‘onclick’, initialOnclick);
}
}
}
}

function updateCurrentWeather(weatherData) {
if (weatherData.current) {
var tempValue = weatherData.current.temp_f || ”;
var skyValue = weatherData.current.sky || ”;
var feelsLikeValue = weatherData.current.feels_like_f || weatherData.current.temp_f || ”;

var tempEl = container.querySelector(‘.weather-grid–current-temp-value’);
if (tempEl) {
tempEl.textContent = tempValue;
tempEl.setAttribute(‘aria-label’, tempValue + ‘ degrees Fahrenheit’);
}

var iconEl = container.querySelector(‘.weather-grid–current-icon’);
if (iconEl && weatherData.current.icon_name) {
iconEl.className=”weather-grid–current-icon weather-current-icon icon icon-weather-” + weatherData.current.icon_name;
}

Advertisement

var skyEl = container.querySelector(‘.weather-grid–sky’);
if (skyEl) {
skyEl.textContent = skyValue;
skyEl.setAttribute(‘aria-label’, ‘Current condition: ‘ + skyValue);
}

var feelsEl = container.querySelector(‘.weather-grid–feels’);
if (feelsEl) {
feelsEl.textContent = feelsLikeValue + ‘°F’;
feelsEl.setAttribute(‘aria-label’, feelsLikeValue + ‘ degrees Fahrenheit’);
}

var weatherContainer = container.querySelector(‘.weather-temp-container’);
if (weatherContainer) {
var summary = ‘Current temperature ‘ + tempValue + ‘ degrees Fahrenheit, ‘ +
skyValue + ‘, feels like ‘ + feelsLikeValue + ‘ degrees’;
weatherContainer.setAttribute(‘aria-label’, summary);
}

updateWeatherBackground(weatherData.current.icon_name);
}
}

function updateWeatherBackground(iconName) {
try {
var bgPath = weatherImages.backgrounds[iconName] || weatherImages.backgrounds.unknown;
container.style.backgroundImage=”url(” + bgPath + ‘)’;
} catch (e) {
console.log(‘Error updating weather background:’, e);
}
}

Advertisement

function updateForecastTabs(weatherData) {
var visibleItems = isWeatherBoxV2 ? 6 : 5;

if (weatherData.hourly) {
var hourlyContainer = container.querySelector(‘.weather-hourly-forecast’);
if (hourlyContainer) {
var html=””;
var maxHours = Math.min(visibleItems, weatherData.hourly.length);

for (var i = 0; i 0 ? currentIndex – 1 : tabs.length – 1;
tabs[prevIndex].focus();
break;
case ‘ArrowRight’:
e.preventDefault();
var nextIndex = currentIndex

Loading more articles…



Source link

Advertisement
Continue Reading

Wisconsin

Storms Friday night but a dry weekend ahead in SE Wisconsin

Published

on

Storms Friday night but a dry weekend ahead in SE Wisconsin


Storms Friday night but a dry weekend ahead in SE Wisconsin

More storms are likely Friday night before our weather quiets down for Easter weekend in SE Wisconsin

Advertisement

RIGHT AFTER WORLD NEWS WITH DAVID MUIR AT 530. THANK YOU DIANA. SHOWERS AND STORMS ARE MOVING IN, BUT IT WILL NOT BE A REPEAT OF LAST NIGHT. THAT’S GOOD NEWS, MARK. THE CHANCE OF SEVERE WEATHER IS VERY LOW. IT IS VERY GOOD BECAUSE NO, I WOULDN’T WANT TO HAVE A REPEAT OF LAST NIGHT. THANKFULLY, WE’RE NOT GOING TO DO THAT. WE DO HAVE SOME SHOWERS ROLLING IN. IT’S A ROUND OF EVENING SHOWERS, BUT A LOT OF THIS IS FALLING APART. I THINK IT’S MAINLY GOING TO BE A COUPLE OF SPRINKLES BY THE TIME IT GETS TO MILWAUKEE. RAIN AND THUNDERSTORMS ARE LIKELY OVERNIGHT. A COUPLE OF STRONG STORMS POSSIBLE. YES. RAIN MOVES OUT BY EARLY SATURDAY. MOST OF SATURDAY IS DRY. IT GETS BREEZY. TEMPERATURES. NOT BAD THOUGH. WE’LL MAKE IT INTO THE MID 50S. ALL RIGHT. FOR THE REST OF TONIGHT YOUR SEVERE THREAT LEVEL ONE AGAIN. LAST NIGHT WE ARE LEVEL THREE ON THE SEVERE THREAT INDEX. WE’RE NOT THERE. ANY KIND OF THREAT WOULD BE HAIL. THAT’S THAT’S OUR ONLY WORRY. I’M NOT WORRIED ABOUT TORNADOES. ANYTHING LIKE THAT. SO A LOW CHANCE OF SOME HAIL. ANY OF THE THREATS ARE VERY LOW. VERY LOW THREAT OF DAMAGING WINDS THAT SHOULD STAY WAY SOUTH. VERY, VERY, VERY, VERY LOW THREAT OF TORNADOES. I’M ALWAYS SCARED TO PUT ZERO THREAT OF TORNADOES, BUT IT’S CLOSE TO ZERO FLOODING. WELL, YOU KNOW WHAT? WE ARE WATERLOGGED. AND SO IT’S NOT GOING TO TAKE THAT MUCH RAIN. WE COULD GET UP TO AN INCH OF RAIN AND THAT WOULD CAUSE SOME ISSUES. NOTICE HOW THIS CONTINUES TO FALL APART. IT’S A STEADY RAIN THOUGH IN WESTERN WAUKESHA COUNTY. IT’S STARTING TO MOVE INTO THE CITY OF WAUKESHA AND INTO PEWAUKEE AS WELL. THUNDERSTORMS BACK OUT TO THE WEST OF US. THE SEVERE THREAT REALLY, I THINK IS WELL, SOUTH. THAT’S WHERE THE WARMER AIR IS LOCATED. IT’S NOT HERE. SO AS WE HEAD THROUGHOUT THE NIGHT, THAT MIDDLE OF THE NIGHT, WE BRING IN SHOWERS AND SOME THUNDERSTORMS, MAYBE A LITTLE SMALL HAIL IN THERE AS WELL. THE COLDER AIR STARTS WRAPPING BACK IN AS WE HEAD INTO SATURDAY NIGHT. MAYBE EVEN ENOUGH TO GET A PASSING FLURRY JUST IN TIME FOR EASTER MORNING. BUT THAT’S NOT GOING TO LAST LONG. EASTER IS OKAY. I WOULDN’T SAY IT’S GREAT, BUT IT’S ALL RIGHT. IT’S 49 DEGREES, A FEW SPRINKLES EARLY, EARLY, EARLY ON SATURDAY. IT’S GONE BY 8:00 AT THE LATEST. THE REST OF THE DAY IS FINE. HOW ABOUT EASTER? WELL, WE START OUT PRETTY CHILLY, 33 AT 7 A.M. IF YOU’RE GOING TO DO EASTER EGG HUNTS. ONE. IF IT’S OUTSIDE, YOU BETTER DRESS FOR IT AND ALSO BE READY FOR THE MUDDY BECAUSE IT IS GOING TO BE WET. WE’RE WET ALL OVER, BUT WE’RE GREENING THINGS UP PRETTY QUICKLY HERE, THANKS TO THE FACT THAT WE’VE HAD ALL THAT RAIN YESTERDAY. 1.8IN OF RAIN IN MILWAUKEE 39 RIGHT NOW IN ELKHART LAKE, 46 DEGREES IN DELAVAN, WHERE YOU’VE HAD A PASSING SHOWER, BUT THAT HAS MOVED ON. NOT EXACTLY SEEING ANYTHING WARM UNLESS YOU GO HERE 81 DEGREES DOWN IN SAINT LOUIS. YOU CAN CLEARLY SEE WHERE THE FRONT IS LOCATED. ALL RIGHT, EARLY SPRINKLES. A BREEZY DAY FOR TOMORROW. MOST OF THE DAY IS DRY, AND I DO THINK WE’LL SEE SOME SUNSHINE OFF. AND ON EASTER SUNDAY DRY, WHICH IS NICE. 49 IT’S KIND OF NICE BECAUSE MOST OF THE STRETCH AFTER WE GET THROUGH TONIGHT IS QUIET. MONDAY AND TUESDAY ARE QUIET. TUESDAY, OF COURSE, IS ELECTION DAY HIGH OF ONLY 38. SO DRESS WARMLY HEADING TO THE POLLS AND THEN WE WARM RIGHT BACK UP IN THE 50S. CHANCES FOR SHOWERS AS WE HEAD INTO THURSDAY AND FRIDAY. IT’S OKAY.

Advertisement

Storms Friday night but a dry weekend ahead in SE Wisconsin

More storms are likely Friday night before our weather quiets down for Easter weekend in SE Wisconsin

Updated: 6:30 PM CDT Apr 3, 2026

Advertisement

Editorial Standards

More storms are likely Friday night before our weather quiets down for Easter weekend in SE Wisconsin

More storms are likely Friday night before our weather quiets down for Easter weekend in SE Wisconsin

Advertisement



Source link

Advertisement
Continue Reading

Wisconsin

Has Wisconsin Supreme Court candidate Chris Taylor been ‘pushing noncitizen voting’?

Published

on

Has Wisconsin Supreme Court candidate Chris Taylor been ‘pushing noncitizen voting’?


No.

We found no evidence that liberal Wisconsin Appeals Court Judge Chris Taylor has supported allowing noncitizens to vote.

Taylor and conservative state Appeals Court Judge Maria Lazar are running in the April 7 Wisconsin Supreme Court election.

A Lazar ad claimed Taylor is “pushing for noncitizen voting.” 

Lazar’s campaign cited:

Advertisement

Taylor’s opposition, while a Democratic state lawmaker, to the Republican-backed 2011 state law requiring identification to vote.

Her introduction of a 2017 bill, which did not become law. It would have provided driver’s licenses to unauthorized residents, but the licenses would have been labeled: “Not valid for voting purposes.”

Taylor’s opinion, in a 2024 appeals court ruling, which said absentee ballots count even if voters’ witnesses fail to give election clerks their full address. Citizenship is required to vote in Wisconsin, but Wisconsin election officials generally do not verify citizenship when a person registers.

Sources

Think you know the facts? Put your knowledge to the test. Take the Fact Brief quiz

This <a target=”_blank” href=”https://wisconsinwatch.org/2026/04/wisconsin-supreme-court-candidate-taylor-lazar-noncitizen-voting-election-campaign-ad/”>article</a> first appeared on <a target=”_blank” href=”https://wisconsinwatch.org”>Wisconsin Watch</a> and is republished here under a <a target=”_blank” href=”https://creativecommons.org/licenses/by-nd/4.0/”>Creative Commons Attribution-NoDerivatives 4.0 International License</a>.<img src=”https://i0.wp.com/wisconsinwatch.org/wp-content/uploads/2021/02/cropped-WCIJ_IconOnly_FullColor_RGB-1.png?fit=150%2C150&amp;quality=100&amp;ssl=1″ style=”width:1em;height:1em;margin-left:10px;”>

<img id=”republication-tracker-tool-source” src=”https://wisconsinwatch.org/?republication-pixel=true&post=1315652&amp;ga4=G-D2S69Y9TDB” style=”width:1px;height:1px;”><script> PARSELY = { autotrack: false, onload: function() { PARSELY.beacon.trackPageView({ url: “https://wisconsinwatch.org/2026/04/wisconsin-supreme-court-candidate-taylor-lazar-noncitizen-voting-election-campaign-ad/”, urlref: window.location.href }); } } </script> <script id=”parsely-cfg” src=”//cdn.parsely.com/keys/wisconsinwatch.org/p.js”></script>



Source link

Advertisement
Continue Reading

Trending