The Denver Police Department is asking for the public’s help in investigating two hit-and-run crashes involving pedestrians this month.
Police said the first crash happened on Nov. 2 at around 7:16 p.m. near the intersection of East Colfax Avenue and North Spruce Street in the East Colfax neighborhood.
A pedestrian was walking across the roadway when a driver traveling west on East Colfax Avenue struck them, speeding away without calling for help. The pedestrian suffered serious injuries but survived, police said.
The vehicle involved in the crash was described as a silver SUV, possibly an older model Toyota RAV4, with driver’s side headlight damage and front-end damage. The vehicle was last seen driving west from the crash site.
The other crash happened just after 1 a.m. Sunday on South Broadway between East Alameda Avenue and West Dakota Avenue in the Baker neighborhood, police said.
Police have not released any details about what led up to the crash, but said a man was struck by a vehicle and died from his injuries the next morning.
The vehicle involved in the crash was described as a 2005 to 2011 Toyota Tacoma. Police said the vehicle was last seen heading south on South Broadway.
Anyone with information about either of the hit-and-runs is asked to call Metro Denver Crime Stoppers at 720-913-7867. Tipsters can be anonymous and are eligible for a $2,000 reward for information leading to an arrest.
Catch up with a rundown of the 7 most important and interesting stories delivered to your inbox every Thursday.
Success! Thank you for subscribing to our newsletter.
function subscribeSuccess() {
var nsltrform = document.querySelector(“#nsltr”);
var nsltrSuccess = document.querySelector(“#successnsltr”);
nsltrform.classList.add(“hideblock”);
nsltrSuccess.classList.remove(“hideblock”);
}
function validateEmail(email) {
return String(email)
.toLowerCase()
.match(
/^(([^()[].,;:s@”]+(.[^()[].,;:s@”]+)*)|(“.+”))@(([[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}])|(([a-zA-Z-0-9]+.)+[a-zA-Z]{2,}))$/
);
}
function validateEmailAddress() {
const result = document.querySelector(“#result”);
const email = document.querySelector(“#email”).value;
result.innerText = “”;
if(validateEmail(email)) {
newsletterSubscribe(email);
} else {
result.innerText = ‘The email entered: ‘ + email + ‘ is not valid :(‘;
result.style.color = “red”;
}
return false;
}
function newsletterSubscribe(email) {
fetch(“https://services.gazette.com/mg2-newsletters.php?action=subscribe&site=denvergazette.com&emailPreferenceId=69&email=” + email, {
method: “POST”
}).then(res => {
console.log(“SUCCESSFUL POST”);
subscribeSuccess();
});
}
#nsltr {
min-width: 100%;
margin: 10px 0;
padding: 10px 20px;
background-color: #2076b3;
background-image: url(https://static.gazette.com/emails/circ/Audience%20Images/dg%20weekly%207.png);
background-size: cover;
}
#nsltr-header {
color: #fff4f4;
}
#nsltr-body {
text-align: center;
color: #ffffff;
}
#nsltr-button {
margin-top: 5px;
}
#successnsltr {
min-width: 100%;
margin: 10px 0;
padding: 10px 20px;
background-color: green;
text-align: center;
color: white;
}
#successnsltr a {
color: white;
}
.hideblock {
display:none;
}
h6 a {
color: black;
text-decoration: none;
padding: 5px;
background-color: #bbccdd;
font-weight: 600;
}
@media only screen and (min-width: 768px) {
#nsltr {
background-image: url(https://static.gazette.com/emails/circ/Audience%20Images/dg%20weekly%207.png);
background-size: cover;
}
}