Connect with us

Milwaukee, WI

D'Vontaye Mitchell death: What comes next?

Published

on

D'Vontaye Mitchell death: What comes next?


The Milwaukee County Medical Examiner’s Office found employees responsible for the June 30 death of D’vontaye Mitchell at the Hyatt Regency hotel downtown.

Advertisement

Now, prosecutors will decide where the case goes from here.

The Milwaukee Police Department recommended four people be charged with felony murder on July 5, but prosecutors stated they needed Mitchell’s autopsy results before making a decision.

A widow’s wait for justice could soon be over.

Advertisement

SIGN UP TODAY: Get daily headlines, breaking news emails from FOX6 News

“They could’ve just waited on the police,” Mitchell’s widow, DeAsia Harmon, said on Friday. “You beat him to death. That’s horrible. For 15 minutes.”

Advertisement

Friday, the Milwaukee County Medical Examiner’s Office ruled the 43-year-old’s death a homicide by restraint asphyxia and the toxic effects of cocaine and methamphetamine. It means Mitchell couldn’t breathe because of the way his body was positioned.

Now, University of Wisconsin law professor John Gross said he thinks prosecutors will act quickly.

Advertisement

“You have somebody who’s resisting, but they’re resisting in a passive way,” Gross said. “When he’s prone on the ground, and what we see doesn’t indicate any type of active physical violence toward any of the other people who are trying to drag him out of the hotel […] the repeated punching in his face is very difficult, I think, to justify as necessary to achieve some other objective.”

But Gross pointed out the felony murder charge police recommended against four people is interesting in Wisconsin, because state law essentially defines it as a sentence enhancer.

“So, even if they had no intention of causing the death of someone, if a death resulted during the course of the commission of another felony, then they can charge felony murder,” he said.

Advertisement

Prosecutors would have to charge the defendants with one of 13 other crimes, like misdemeanor battery, to then tack on felony murder.

That would allow the judge to add up to 15 years to a sentence.

Advertisement

FREE DOWNLOAD: Get breaking news alerts in the FOX6 News app for iOS or Android.

Though Gross said it puts the judge in a precarious position.

“How will that signal to the victim’s family, to the community, to everybody involved, the seriousness of the behavior and the result?” he asked.

Advertisement

As part of plans for a protest outside the district attorney’s office on Monday, Aug. 5, the Mitchell family said it wants prosecutors to bring first-degree intentional homicide charges against the now-former Hyatt employees.



Source link

Milwaukee, WI

HAVE YOU SEEN HIM? Milwaukee police searching for critically missing person

Published

on

HAVE YOU SEEN HIM? Milwaukee police searching for critically missing person


Police say Smith was last seen near N. 38th St. and W. Fairmount Ave. on Milwaukee’s north side Friday at approximately 7:45 p.m.

Advertisement

Milwaukee Police Department

have you seen him? milwaukee police searching for critically missing person

SOURCE: Milwaukee Police Department

Advertisement

HAVE YOU SEEN HIM? Milwaukee police searching for critically missing person

Advertisement

Police say Smith was last seen near N. 38th St. and W. Fairmount Ave. on Milwaukee’s north side Friday at approximately 7:45 p.m.

WISN logo

Updated: 11:45 PM CDT Apr 10, 2026

Editorial Standards

Advertisement

The Milwaukee Police Department needs your help finding Bobby Smith, who police say is critically missing.Police say Smith was last seen near N. 38th St. and W. Fairmount Ave. on Milwaukee’s north side Friday at approximately 7:45 p.m.Smith is 5’11” and weighs 140 pounds. Police say he was last seen wearing a white T-shirt, black pants, and black shoes.If anyone knows where Smith may be, they are asked to call MPD District 7 at 414-935-7272.

The Milwaukee Police Department needs your help finding Bobby Smith, who police say is critically missing.

Police say Smith was last seen near N. 38th St. and W. Fairmount Ave. on Milwaukee’s north side Friday at approximately 7:45 p.m.

Advertisement

Smith is 5’11” and weighs 140 pounds. Police say he was last seen wearing a white T-shirt, black pants, and black shoes.

If anyone knows where Smith may be, they are asked to call MPD District 7 at 414-935-7272.

Advertisement

`;
}

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’);
});

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’);
});

Advertisement

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 };

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;

Advertisement

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’);

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 || ”;

Advertisement

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);
}

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);
}

Advertisement

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;

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

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’);
});

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

Advertisement

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 };

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) {}

Advertisement

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’);

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);
}
}
}
}

Advertisement

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);
}

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

Advertisement

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;

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

Advertisement

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

Continue Reading

Milwaukee, WI

Milwaukee stabbing suspect deemed ‘not competent’ for trial

Published

on

Milwaukee stabbing suspect deemed ‘not competent’ for trial


play

The Milwaukee man accused of stabbing his 44-year-old girlfriend to death then allegedly confessing to the crime in a text message was found not competent to stand trial and unable to assist in his own defense.

Mile Dukic has been in custody at the Milwaukee County Jail since his arrest in February, following the brutal killing of Amanda Varisco, 44.

Advertisement

Dukic is charged with first-degree intentional homicide, use of a dangerous weapon, and felony counts of bail jumping.

The doctor’s report was submitted to the court April 9, online court records show. At an April 10 hearing, Dukic, attending by Zoom, and his lawyers Arial Rosenberg and Theodore O’Reilly did not contest any of the report’s conclusions.

Court proceedings were ordered suspended by Circuit Court Judge David Swanson, and Dukic was assigned to the Department of Health and Family Services for institutional treatment to restore competency.

Swanson ordered the parties to return for a review hearing on July 9 to report progress.

Advertisement

Here’s what police and prosecutors say happened that night

According to a criminal complaint, Dukic and Varisco had a physical altercation on Feb. 3 at an apartment on the 3600 block of West National Avenue.

Milwaukee police were sent there that night to do a welfare check.

Officers arrived and talked to Varisco’s daughter and the daughter’s boyfriend at the scene. The daughter shared with police a text message she said she received from Dukic in which he claimed he had killed her mother, the complaint said.

Advertisement

Dukic told officers in an interview he and Varisco fought because Varisco had gotten a phone call from another man and that she told Dukic she wanted him to leave, the complaint reads.

Online court records show Dukic was out on bail in two cases at the time of Varsico’s death – one for stalking another woman, one for bail jumping.

Chris Ramirez covers courts for the Milwaukee Journal Sentinel. He can be reached at caramirez@usatodayco.com.



Source link

Advertisement
Continue Reading

Milwaukee, WI

Milwaukee man accused of appliance beating; victim later dies

Published

on

Milwaukee man accused of appliance beating; victim later dies


A Milwaukee man accused of beating a longtime friend with household appliances now faces additional scrutiny after the victim later died from his injuries.

What we know:

Advertisement

The accused is 51-year-old David Tisser. He has been charged with the following:

  • Battery to an elderly person – intentionally causing great bodily harm, use of a dangerous weapon
  • Battery to an elderly person – intentionally causing bodily harm

If convicted, he faces up to $110,000 in fines and up to 46 years in prison, including a possible five-year dangerous weapon enhancer. However, now that one of the victims has died, the Milwaukee County District Attorney’s Office will be reviewing additional charges.

Advertisement

The backstory:

According to a criminal complaint, the incident happened just after 7 p.m. April 1 at a building near 15th and National.

FREE DOWNLOAD: Get breaking news alerts in the FOX LOCAL Mobile app for iOS or Android

Advertisement

Investigators say Tisser first kicked in a door and injured a 72-year-old man before forcing his way into another room belonging to 64-year-old Steve Stegall.

Stegall’s daughter, Sheronica McIntyre, said her father knew Tisser and considered him a friend.

Advertisement

The complaint says Tisser struck Stegall in the head and face using multiple items inside the room, including a microwave, mini-fridge and television, before pushing him down a stairway as he attempted to leave.

What they’re saying:

 McIntyre reiterated this.

Advertisement

“He went to open the door, David Tisser forced himself in his room. He beat my dad severely with a microwave and picked up a refrigerator, yes, to beat my day with appliances over the head,” McIntyre said. “He threw him down the stairs severely and my dad says that’s when he hit his head. He was left with a TBI in severe bleeding up the brain.”

Stegall was taken to the hospital with a head wound requiring five staples, a forehead injury requiring 15 stitches and brain bleeding that doctors described as potentially life-threatening.

Advertisement

McIntyre said her father was placed in a coma for three days following the attack. She said he later woke up and described the assault.

“This happened to my dad, being a good person because he believed they’re showing grace,” McIntyre said.

SIGN UP TODAY: Get daily headlines, breaking news emails from FOX6 News

Advertisement

Stegall died Wednesday, according to McIntyre.

“I’m the only child, he’s my only parent, this is my last parent. This is my dad,” McIntyre said. “He was somebody my dad thought was a friend, so yeah, I want justice for my dad. You know he wasn’t insane. When he did this, he wasn’t insane. He knew exactly what he was doing.”

Advertisement

What’s next:

A competency exam has been ordered for Tisser, with the report expected in court May 4, according to court records.

His cash bond was set at $10,000.

Advertisement

The Source: Information in this report is from the Milwaukee County District Attorney’s Office and Wisconsin Circuit Court.

Crime and Public SafetyMilwaukeeNews



Source link

Advertisement
Continue Reading

Trending