Connect with us

Missouri

KCPD investigating after 1 man hurt in Saturday shooting

Published

on


KCPD investigating after 1 man hurt in Saturday shooting

Advertisement

ASKED TO CALL THE CRIME STOPPERS TIPS HOTLINE AT 81647 FOUR TIPS. THIS MORNING, POLICE ARE INVESTIGATING A SHOOTING NEAR GLADSTONE BOULEVARD AND THOMPSON AVENUE, JUST SOUTH OF KESSLER PARK IN KANSAS CITY, MISSOURI. POLICE SAY A MAN WAS TAKEN TO THE HOSPITAL WITH SERIOUS INJURIES. NO WORD FROM POLICE O

The Kansas City, Missouri, Police Department confirms detectives are investigating a shooting that sent one man to the hospital Saturday morning. KCPD Sgt. Phil DiMartino said a shooting happened along Gladstone Boulevard, just off Independence Avenue.DiMartino said an adult man was taken to the hospital with serious injuries but is now in stable condition. Detectives are still investigating what led up to the shooting. If you know anything, you’re asked to call the CrimeStoppers Tips Hotline at 816-474-TIPS.

Advertisement

The Kansas City, Missouri, Police Department confirms detectives are investigating a shooting that sent one man to the hospital Saturday morning.

KCPD Sgt. Phil DiMartino said a shooting happened along Gladstone Boulevard, just off Independence Avenue.

DiMartino said an adult man was taken to the hospital with serious injuries but is now in stable condition.

Advertisement

Detectives are still investigating what led up to the shooting.

If you know anything, you’re asked to call the CrimeStoppers Tips Hotline at 816-474-TIPS.

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

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.kmbc.com/alerts”);
weatherWatchLink.setAttribute(‘onclick’, “return handleWeatherLinkClick(event, ‘click_alerts’, ‘click’, ‘mobile-weather’, “https://www.kmbc.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

`;
}

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

Advertisement

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

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

Advertisement

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;

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

Advertisement

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.kmbc.com/alerts”);
weatherWatchLink.setAttribute(‘onclick’, “return handleWeatherLinkClick(event, ‘click_alerts’, ‘click’, ‘sidelist-weather’, “https://www.kmbc.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’);
}

Advertisement

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

updateWeatherBackground(weatherData.current.icon_name);
}
}

Advertisement

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

Loading more articles…

Advertisement



Source link

Missouri

Missouri Lottery Powerball, Pick 3 winning numbers for May 4, 2026

Published

on


The Missouri Lottery offers several draw games for those aiming to win big.

Here’s a look at May 4, 2026, results for each game:

Winning Powerball numbers from May 4 drawing

30-36-42-60-63, Powerball: 13, Power Play: 2

Check Powerball payouts and previous drawings here.

Advertisement

Winning Pick 3 numbers from May 4 drawing

Midday: 3-0-1

Midday Wild: 6

Evening: 1-8-0

Evening Wild: 3

Check Pick 3 payouts and previous drawings here.

Advertisement

Winning Pick 4 numbers from May 4 drawing

Midday: 9-9-3-3

Midday Wild: 0

Evening: 0-2-0-8

Evening Wild: 0

Check Pick 4 payouts and previous drawings here.

Advertisement

Winning Cash Pop numbers from May 4 drawing

Early Bird: 13

Morning: 12

Matinee: 08

Prime Time: 15

Night Owl: 10

Advertisement

Check Cash Pop payouts and previous drawings here.

Winning Show Me Cash numbers from May 4 drawing

19-21-24-32-35

Check Show Me Cash payouts and previous drawings here.

Winning Powerball Double Play numbers from May 4 drawing

20-32-35-51-60, Powerball: 07

Check Powerball Double Play payouts and previous drawings here.

Advertisement

Feeling lucky? Explore the latest lottery news & results

Are you a winner? Here’s how to claim your lottery prize

All Missouri Lottery retailers can redeem prizes up to $600. For prizes over $600, winners have the option to submit their claim by mail or in person at one of Missouri Lottery’s regional offices, by appointment only.

To claim by mail, complete a Missouri Lottery winner claim form, sign your winning ticket, and include a copy of your government-issued photo ID along with a completed IRS Form W-9. Ensure your name, address, telephone number and signature are on the back of your ticket. Claims should be mailed to:

Ticket Redemption

Missouri Lottery

Advertisement

P.O. Box 7777

Jefferson City, MO 65102-7777

For in-person claims, visit the Missouri Lottery Headquarters in Jefferson City or one of the regional offices in Kansas City, Springfield or St. Louis. Be sure to call ahead to verify hours and check if an appointment is required.

For additional instructions or to download the claim form, visit the Missouri Lottery prize claim page.

When are the Missouri Lottery drawings held?

  • Powerball: 9:59 p.m. Monday, Wednesday and Saturday.
  • Mega Millions: 10 p.m. Tuesday and Friday.
  • Pick 3: 12:45 p.m. (Midday) and 8:59 p.m. (Evening) daily.
  • Pick 4: 12:45 p.m. (Midday) and 8:59 p.m. (Evening) daily.
  • Cash4Life: 8 p.m. daily.
  • Cash Pop: 8 a.m. (Early Bird), 11 a.m. (Late Morning), 3 p.m. (Matinee), 7 p.m. (Prime Time) and 11 p.m. (Night Owl) daily.
  • Show Me Cash: 8:59 p.m. daily.
  • Lotto: 8:59 p.m. Wednesday and Saturday.
  • Powerball Double Play: 9:59 p.m. Monday, Wednesday and Saturday.

This results page was generated automatically using information from TinBu and a template written and reviewed by a Missouri editor. You can send feedback using this form.



Source link

Advertisement
Continue Reading

Missouri

Lane of I-70 near St. Charles Road closes for emergency repairs

Published

on

Lane of I-70 near St. Charles Road closes for emergency repairs


One lane of a portion of eastbound Interstate 70 in Columbia will close overnight for emergency pavement repairs, according to the Missouri Department of Transportation.

The closure will begin at 3 p.m. on Monday for the right lane at St. Charles Road, near mile marker 131, and will be reopened Tuesday morning when repairs are complete, according to the news release.

The area is the site of ongoing construction as part of MoDOT’s Improve I-70 Program. Construction crews tore down the St. Charles Road bridge over I-70 last month so a new bridge that’s wide enough to accommodate three lanes of travel each way underneath can be constructed.

Advertisement



Source link

Continue Reading

Missouri

Missouri Lottery Pick 3, Pick 4 winning numbers for May 3, 2026

Published

on


The Missouri Lottery offers several draw games for those aiming to win big.

Here’s a look at May 3, 2026, results for each game:

Winning Pick 3 numbers from May 3 drawing

Midday: 6-7-2

Midday Wild: 8

Advertisement

Evening: 8-0-8

Evening Wild: 8

Check Pick 3 payouts and previous drawings here.

Winning Pick 4 numbers from May 3 drawing

Midday: 5-9-3-1

Midday Wild: 6

Advertisement

Evening: 1-5-9-3

Evening Wild: 0

Check Pick 4 payouts and previous drawings here.

Winning Cash Pop numbers from May 3 drawing

Early Bird: 15

Morning: 06

Advertisement

Matinee: 04

Prime Time: 10

Night Owl: 02

Check Cash Pop payouts and previous drawings here.

Winning Show Me Cash numbers from May 3 drawing

05-15-28-37-39

Advertisement

Check Show Me Cash payouts and previous drawings here.

Feeling lucky? Explore the latest lottery news & results

Are you a winner? Here’s how to claim your lottery prize

All Missouri Lottery retailers can redeem prizes up to $600. For prizes over $600, winners have the option to submit their claim by mail or in person at one of Missouri Lottery’s regional offices, by appointment only.

To claim by mail, complete a Missouri Lottery winner claim form, sign your winning ticket, and include a copy of your government-issued photo ID along with a completed IRS Form W-9. Ensure your name, address, telephone number and signature are on the back of your ticket. Claims should be mailed to:

Ticket Redemption

Advertisement

Missouri Lottery

P.O. Box 7777

Jefferson City, MO 65102-7777

For in-person claims, visit the Missouri Lottery Headquarters in Jefferson City or one of the regional offices in Kansas City, Springfield or St. Louis. Be sure to call ahead to verify hours and check if an appointment is required.

For additional instructions or to download the claim form, visit the Missouri Lottery prize claim page.

Advertisement

When are the Missouri Lottery drawings held?

  • Powerball: 9:59 p.m. Monday, Wednesday and Saturday.
  • Mega Millions: 10 p.m. Tuesday and Friday.
  • Pick 3: 12:45 p.m. (Midday) and 8:59 p.m. (Evening) daily.
  • Pick 4: 12:45 p.m. (Midday) and 8:59 p.m. (Evening) daily.
  • Cash4Life: 8 p.m. daily.
  • Cash Pop: 8 a.m. (Early Bird), 11 a.m. (Late Morning), 3 p.m. (Matinee), 7 p.m. (Prime Time) and 11 p.m. (Night Owl) daily.
  • Show Me Cash: 8:59 p.m. daily.
  • Lotto: 8:59 p.m. Wednesday and Saturday.
  • Powerball Double Play: 9:59 p.m. Monday, Wednesday and Saturday.

This results page was generated automatically using information from TinBu and a template written and reviewed by a Missouri editor. You can send feedback using this form.



Source link

Continue Reading
Advertisement

Trending