Connect with us

Wisconsin

Utah man convicted of impersonating federal officer, scamming Wisconsin families

Published

on

Utah man convicted of impersonating federal officer, scamming Wisconsin families


MILWAUKEE, Wis. (WBAY) – A man from Utah has been sentenced to over a year in prison for wire fraud and impersonating a federal officer.

Juan Carlos Martinez-Napoles, 38, of Utah was sentenced to 15 months in federal prison on Tuesday. He’s also been ordered to pay restitution to his victims and will serve two years of supervised release.

According to court documents, between September 2018 and December 2019, Martinez-Napoles posed as an immigration agent from the United States Citizenship and Immigration Services and told victims he could assist them in achieving legal status in the U.S. for a fee. He convinced three Wisconsin families to pay him around $45,000, and threatened to have members of one of those families deported if they didn’t pay him.

“Fraudulently posing as a USCIS agent, Mr. Martinez-Napoles took advantage of vulnerable individuals, whom he convinced to pay a total of over $45,000 for his ‘help,’” said U.S. Attorney Haanstad. “In reality, he was simply lying to these individuals to line his own pockets. And when a victim questioned his activities, Mr. Martinez-Napoles even threatened to have the victim’s family deported. I commend the hard work of everyone who helped bring Mr. Martinez-Napoles to justice and commend the victims for their willingness to cooperate with the legitimate federal authorities in this matter.”

Advertisement

“Posing as a government official as Martinez-Napoles did for the purposes of exploiting and victimizing other individuals is intolerable,” said Special Agent in Charge Sean Fitzgerald of HSI Chicago. “HSI will continue to work with our law enforcement partners to hold such offenders accountable for their crimes.”



Source link

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