91³Ô¹ÏÍø

Watch CBS News

10 people injured in Chicago weekend shootings, CPD says

At least 10 people were hurt in weekend shootings across Chicago, according to Chicago police. 

The ages of the victims range from 17 to 46.

Shootings from Friday 

The first shooting of the weekend happened around 10 p.m. in the 2000 block of West 52nd Street. Police said a 23-year-old man was shot in the left leg and was taken to the University of Chicago Hospital in good condition. 

The victim was uncooperative in providing details to responding officers.

Later, around 10:42 p.m., officers responded to a call of a walk-in person shot at St. Mary's Hospital. The victim, a 32-year-old man, told the officers that the initial incident happened on Thursday. He was inside a residence in the 7300 block of South St. Lawrence Avenue when he was involved in an argument that turned into a fight with a known suspect who pulled out a gun and shot at him. 

The victim was grazed in the back by the gunfire and self-transported himself to St. Mary's Hospital on Friday in good condition. It is unclear what time the victim arrived at the hospital. 

Then, around 10:45 p.m., in the 1200 block of North Harding Avenue, a 20-year-old man was inside his vehicle when he was approached by a dark-colored SUV occupied by unknown male suspects. One of them in the rear seat pulled out a gun and shot in the victim's direction.

The Chicago Fire Department found the victim inside a vehicle with gunshot wounds to the abdomen and to the right forearm. He was taken to Mt. Sinai Hospital in serious condition. 

In other shootings from 5 p.m. Friday to 5 a.m. Monday:

Shootings from Saturday

  • At 1:45 a.m. in the 600 block of East 75th Street, a 31-year-old woman was involved in a fight with a security guard. During the fight, a firearm was discharged. The victim suffered a gunshot wound to the left armpit. She was taken to the University of Chicago Medical Center in good condition. The security guard is a registered FOID/CCL holder, and the firearm was recovered on scene. The security guard is being questioned by Area One detectives.
  • At 2:21 a.m. in the 7500 block of South Cottage Grove Avenue, a 46-year-old man was walking outside when he suffered a self-inflicted gunshot wound to the left thigh. The victim was taken to the University of Chicago Hospital in good condition. The victim told officers that after the shooting occurred, an unknown male approached him and took his gun and fled the scene in a black pick-up truck.
  • At 12:10 p.m. in the 10700 block of South Champlain Avenue, an 18-year-old man was inside a vehicle when he was approached by an unknown suspect who pulled out a gun and fired shots. The victim was struck in the calf and was taken to the U of C Hospital, initially reported in fair condition.   
  • At 8:28 p.m. in the 500 block of West 66th Street, a man was dropped off at Holy Cross Hospital with a gunshot wound to the head. The victim was later taken to Stroger Hospital in critical condition. The victim was uncooperative in providing details of the incident to responding officers.
  • At 10:50 p.m. in the 3200 block of South Ashland Avenue, a 32-year-old man was driving in his vehicle when a white SUV approached, and someone inside shot at the victim. The victim was shot in the lower back and was taken to Mt. Sinai Hospital in good condition. The offending vehicle fled in an unknown direction.

Shootings from Sunday

  • At 1:08 a.m. in the 200 block of West Pershing Road, an 18-year-old man and a 17-year-old boy were traveling in a vehicle when they became involved in an argument with three unknown male offenders standing on the street. One of them pulled out a gun and shot in their direction. The 18-year-old was hit in the right leg and was taken to the University of Chicago Medical Center in good condition. The 17-year-old suffered a graze wound to the left calf and was treated on scene by the Chicago Fire Department members.     

Unless otherwise mentioned, no arrests were made in either shooting. 


Check back with CBS News Chicago throughout the weekend. 

View CBS News In
CBS News App Open
Chrome Safari Continue
const link = doc.createElement('link'); link.rel = 'stylesheet'; link.href = '/fly/fly/bundles/cbsnewscontent/css/cmp-banner.min.css?v=296763317a51cab90faa73f1bb146d5c'; doc.head.appendChild(link); doc.body.innerHTML = CONSENT_MESSAGE; } else { el.insertAdjacentHTML('afterend', CONSENT_MESSAGE); } }); } function hidePrivacyMessage() { // Remove from the main document document.querySelectorAll(`.${CONSENT_MESSAGE_CLASS}`).forEach(el => el.remove()); // Remove from inside any iframes document.querySelectorAll('iframe').forEach(iframe => { const doc = iframe.contentDocument || iframe.contentWindow.document; doc.querySelectorAll(`.${CONSENT_MESSAGE_CLASS}`).forEach(el => el.remove()); }); } function activateGatedScripts() { // Handle both new format (cmp-gated-script) and old OneTrust/Ketch format (optanon-category-4) const gatedScripts = Array.from(document.querySelectorAll('script.cmp-gated-script, script.optanon-category-4')); // Activate scripts sequentially with a small delay to avoid timing issues let delay = 0; gatedScripts.forEach(function(placeholder, index) { setTimeout(function() { // Skip if already processed if (placeholder.hasAttribute('data-cmp-processed')) { return; } placeholder.setAttribute('data-cmp-processed', 'true'); const newScript = document.createElement('script'); newScript.type = 'text/javascript'; // Try new format first (data-cmp-src), then fall back to old format (data-src) const src = placeholder.getAttribute('data-cmp-src') || placeholder.getAttribute('data-src'); if (src) { newScript.src = src; } else if (placeholder.textContent) { // Inline script - just copy the content newScript.textContent = placeholder.textContent; } // Handle new format attributes (data-cmp-attrs) - for both inline and external scripts const attrs = placeholder.getAttribute('data-cmp-attrs'); if (attrs) { const tempDiv = document.createElement('div'); tempDiv.innerHTML = '
<\/div>'; const tempAttrs = tempDiv.firstChild.attributes; for (let i = 0; i < tempAttrs.length; i++) { // For external scripts, allow defer/async. For inline scripts, skip them (not valid) if (src || (tempAttrs[i].name !== 'async' && tempAttrs[i].name !== 'defer')) { newScript.setAttribute(tempAttrs[i].name, tempAttrs[i].value); } } } // Copy other attributes from old OneTrust format for (let i = 0; i < placeholder.attributes.length; i++) { const attr = placeholder.attributes[i]; // Skip attributes we've already handled or don't want to copy if (!['class', 'data-src', 'data-type', 'data-cmp-src', 'data-cmp-attrs', 'data-cmp-processed', 'type', 'async', 'defer', 'src'].includes(attr.name)) { newScript.setAttribute(attr.name, attr.value); } } placeholder.parentNode.replaceChild(newScript, placeholder); // If external script, manually trigger window.onload handlers after it loads // This handles widgets that use window.onload for initialization if (src) { newScript.addEventListener('load', function() { // If page already loaded and script set a new onload handler, trigger it if (document.readyState === 'complete' && window.onload) { const originalOnload = window.onload; window.onload = null; // Clear temporarily to prevent loops originalOnload(); // Execute the handler } }); } }, delay); delay += 500; // 500ms delay between each script to allow full loading }); } cbsoptanon.onScriptsReady(function(cmp) { cmp.ot.targetingAllowed(function(allowed) { if (!allowed) { showPrivacyMessage(); } else { activateGatedScripts(); } }); cmp.ot.awaitInitialConsent(function(consent_model) { cmp.ot.addOnConsentChangedHandler(function() { cmp.ot.targetingAllowed(function(allowed) { if (allowed) { hidePrivacyMessage(); activateGatedScripts(); } else { showPrivacyMessage(); } }); }); }); });