Connect with us

New Mexico

Record New Mexico rainfall causes deadly flash flooding

Published

on

Record New Mexico rainfall causes deadly flash flooding


Record New Mexico rainfall causes deadly flash flooding – CBS News

Watch CBS News


Record rainfall caused severe flooding in and around Roswell, New Mexico, over the weekend that killed at least two people and injured dozens more. The National Weather Service recorded nearly half a foot of rain on Saturday, breaking a 1901 record, and the state’s National Guard said Sunday that it’s rescued more than 300 people, according to The Associated Press.

Advertisement

Be the first to know

Get browser notifications for breaking news, live events, and exclusive reporting.




Source link

Advertisement

New Mexico

NM Department of Wildlife warns of aggressive wildlife behavior

Published

on

NM Department of Wildlife warns of aggressive wildlife behavior


The New Mexico Department of Wildlife is now urging outdoor recreationists to use caution after two separate incidents involving unusually aggressive wildlife took place in Catron County.

Advertisement

NM Department of Wildlife warns of aggressive wildlife behavior

The New Mexico Department of Wildlife is now urging outdoor recreationists to use caution after two separate incidents involving unusually aggressive wildlife took place in Catron County.

Advertisement

CHARGES, INCLUDING MURDER. HIS TRIAL DATE IS NOT YET SET. THE DEPARTMENT OF WILDLIFE IS URGING EVERYONE TO STAY ALERT AFTER TWO CASES OF AGGRESSIVE WILDLIFE IN THE GILA WILDERNESS IN CATRON COUNTY. A BOBCAT AND FOX APPROACHED AND ENGAGED WITH PEOPLE IN SEPARATE ENCOUNTERS. THEY WEREN’T BITTEN, BUT THAT BEHAVIOR RAISES SUSPICION OF RABIES. A BOBCAT JUST TESTED POSITIVE FOR THAT IN SIERRA COUNTY. STATE WILDLIFE AND HEALTH OFFICIALS SAY PEOPLE SHOULD AVOID WILD ANIMALS, KEEP PETS LEASHED AND GET THEIR RABIES SHOT

Advertisement

NM Department of Wildlife warns of aggressive wildlife behavior

The New Mexico Department of Wildlife is now urging outdoor recreationists to use caution after two separate incidents involving unusually aggressive wildlife took place in Catron County.

Updated: 6:42 PM MDT Apr 8, 2026

Advertisement

Editorial Standards

The New Mexico Department of Wildlife is now urging outdoor recreationists to use caution after two separate incidents involving unusually aggressive wildlife took place in Catron County. According to the department, in different incidents, a bobcat and a fox approached and engaged with hikers and campers within the Gila Wilderness. Though nobody was bitten, these reports raise suspicion of rabies infections and come after a bobcat tested positive for rabies in Sierra County in March.They say rabies has been diagnosed in both bobcats and foxes in New Mexico. If you see a rabid animal, you should report it to your local animal control officer or your local New Mexico Department of Wildlife Conservation officer.The department says to keep you and your family safe from rabies:Always keep pets on a leash. Pets should be up to date on rabies vaccinations and wearing current license tags on their collar. If your cat or dog has been bitten or scratched, especially by a wild animal, call your pet’s veterinarian even if the wound is superficial.Horses and other livestock should also be considered for rabies vaccination to protect them from rabid animals that may attack them.Stay away from wild or unfamiliar animals. Do not attempt to feed, approach or touch wild animals (alive or dead). Teach this important message to your children and always keep a close eye on your children.If you or someone you know is bitten by an animal or comes into contact with an animal’s saliva, wash the exposed site immediately with soap and water. Be sure to report the bite to local animal control and seek medical care as soon as possible.If you or your pets are bitten or otherwise exposed to the saliva of wild animals, seek medical care immediately and contact the NMDOH Helpline at 833-SWNURSE (796-8773).

The New Mexico Department of Wildlife is now urging outdoor recreationists to use caution after two separate incidents involving unusually aggressive wildlife took place in Catron County.

Advertisement

According to the department, in different incidents, a bobcat and a fox approached and engaged with hikers and campers within the Gila Wilderness. Though nobody was bitten, these reports raise suspicion of rabies infections and come after a bobcat tested positive for rabies in Sierra County in March.

They say rabies has been diagnosed in both bobcats and foxes in New Mexico. If you see a rabid animal, you should report it to your local animal control officer or your local New Mexico Department of Wildlife Conservation officer.

The department says to keep you and your family safe from rabies:

Advertisement
  • Always keep pets on a leash. Pets should be up to date on rabies vaccinations and wearing current license tags on their collar. If your cat or dog has been bitten or scratched, especially by a wild animal, call your pet’s veterinarian even if the wound is superficial.
  • Horses and other livestock should also be considered for rabies vaccination to protect them from rabid animals that may attack them.
  • Stay away from wild or unfamiliar animals. Do not attempt to feed, approach or touch wild animals (alive or dead). Teach this important message to your children and always keep a close eye on your children.
  • If you or someone you know is bitten by an animal or comes into contact with an animal’s saliva, wash the exposed site immediately with soap and water. Be sure to report the bite to local animal control and seek medical care as soon as possible.
  • If you or your pets are bitten or otherwise exposed to the saliva of wild animals, seek medical care immediately and contact the NMDOH Helpline at 833-SWNURSE (796-8773).

`;
}

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

`;
}

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

Loading more articles…



Source link

Continue Reading

New Mexico

Domino’s top franchisee got his start in southeast New Mexico, delivered pizza in Alamogordo – Alamogordo Daily News

Published

on

Domino’s top franchisee got his start in southeast New Mexico, delivered pizza in Alamogordo – Alamogordo Daily News


Staff reports Brian Bailey owns more Domino’s franchise stores than anyone else. And he got his start delivering the pies in southeast New Mexico. He…



Source link

Continue Reading

New Mexico

New Mexico reaction to Trump’s deadline on Iran war

Published

on

New Mexico reaction to Trump’s deadline on Iran war


New Mexico reaction to Trump’s deadline on Iran war

Sen. Ben Ray Luján says Trump is waging an illegal war

Advertisement

THIS IS KOAT ACTION SEVEN NEWS. WE BEGIN WITH BREAKING NEWS AND THAT BREAKING NEWS IN THE WAR IN IRAQ. IF YOU’RE JUST TUNING IN, PRESIDENT TRUMP SAYING ON TRUTH SOCIAL, HE WILL AGREE TO A TWO WEEK CEASEFIRE ON THE CONDITION THAT IRAN AGREES TO REOPEN THE STRAIT OF HORMUZ. HIS NEW OFFER, COMING HOURS BEFORE HIS DEADLINE FOR IRAN TO OPEN THE STRAIT, THREATENING IF THEY DIDN’T. QUOTE, A WHOLE CIVILIZATION WILL DIE TONIGHT, NEVER TO BE BROUGHT BACK AGAIN. NOW, HE SAYS HE’S HAD CONVERSATIONS WITH THE FIELD MARSHAL AND PRIME MINISTER OF PAKISTAN AGREEING TO HOLD OFF FORCE BEING SENT TONIGHT TO IRAN. HE POSTED THIS. I’LL HOLD OFF THE DESTRUCTIVE FORCE BEING SENT TONIGHT TO IRAN AND SUBJECT TO THE ISLAMIC REPUBLIC OF IRAN, AGREEING TO THE COMPLETE, IMMEDIATE AND SAFE OPENING OF THE STRAIT OF HORMUZ. I AGREE TO SUSPEND THE BOMBING AND ATTACK IRAN FOR A PERIOD OF TWO WEEKS. HE CALLED IT A DOUBLE CEASE FIRE AFTER GETTING A PROPOSAL FROM IRAN AND WORKABLE BASIS ON WHICH TO NEGOTIATE. PROTESTERS AND LAWMAKERS REACTING TO THE PRESIDENT’S EARLIER SOCIAL MEDIA POSTS ABOUT ENDING A CIVILIZATION. IF THE STRAIT OF HORMUZ WAS NOT REOPENED. PRIOR TO THAT TEMPORARY CEASE FIRE DEAL HAS BEEN SUSPENDED. NOW, GETTING REACTION FROM SENATOR LUJAN. YEAH. SENATOR LUJAN, TODAY REACTING TO THE DEMOCRATIC PARTY OF NEW MEXICO CALLING FOR PRESIDENT TRUMP’S IMPEACHMENT. BUT FIRST, PROTESTERS GATHERED IN ALBUQUERQUE THIS MORNING. THE WAR IN IRAQ, IN ALBUQUERQUE, A FAMILIAR SPOT IN FRONT OF KIRTLAND AIR FORCE BASE TUESDAY, WHERE PROTESTERS HAVE BEEN GATHERING. BUT TODAY’S TONE WAS A BIT DIFFERENT. WHAT WOULD MAKE ME HAPPY IS A UNIVERSAL PURGE OF THE WHITE HOUSE AND THE PENTAGON. THERE’S NO REASON TO HAVE THESE WAR CRIMINALS IN OUR SERVICE, OR EVEN IN OUR GENE POOL ANYMORE. THE DEMOCRATIC PARTY OF NEW MEXICO CALLING FOR PRESIDENT TRUMP’S IMPEACHMENT. IN AN EMAIL SENT TO KOAT, U.S. SENATOR BEN RAY LUJAN IN ALBUQUERQUE AND RESPONDING, DO YOU THINK HE SHOULD BE REMOVED FROM OFFICE? PRESIDENT TRUMP, WE’LL SEE WHAT HAPPENS IN THE HOUSE OF REPRESENTATIVES, WHICH IS WHERE THERE WOULD BE ANY IMPEACHMENT CONSIDERATION OR HEARINGS. SENATOR LUJAN, REACTING TO THIS SOCIAL MEDIA POST BY TRUMP WHERE HE CALLS FOR ATTACKS ON THE IRANIAN INFRASTRUCTURE, BRIDGES AND POWER PLANTS. IF A DEAL WASN’T REACHED, THERE HAS STILL NOT BEEN A VOTE THAT REPUBLICANS HAVE BROUGHT TO THE SENATE FLOOR, GIVING THE PRESIDENT THE TOOLS THAT ANY PRESIDENT WOULD NEED TO GO TO WAR. AN AUMF THIS PRESIDENT IS GOING AT IT AGAIN, RECKLESSLY. LUJAN FALLING SHORT OF CALLING TRUMP A WAR CRIMINAL. I BELIEVE THE PRESIDENT IS NOT FOLLOWING UNITED STATES LAW. WHEN THE PRESIDENT IS THREATENING THE ELIMINATION OF A CIVILIZATION OF PEOPLE, I WOULD ARGUE THAT THAT IS BREAKING U.S. LAW, FEDERAL LAW, GLOBAL LAW, AS WELL. OKAY. THE REPUBLICAN PARTY OF NEW MEXICO RELEASING THIS STATEMENT TO US JUST A SHORT TIME AGO, SAYING IN PART, MAKE NO MISTAKE, THE WAY PRESIDENT TRUMP HAS DEALT WITH IRAN HAS FUNDAMENTALLY MADE OUR COUNTRY SAFER. AS THE PRESIDENT HAS STATED, OUR MILITARY OBJECTIVES IN IRAN ARE NEARLY FINISHED. AND THE TWO WEEK CEASEFIRE ANNOUNCED TODAY PROVES THAT WE ARE IN TOTAL CONTROL OF THIS CONFLICT. IN THE STUDIO, JOHN POLO, KOAT ACTION SEVEN NEWS TONIGHT AT TEN. OUR WASHINGTON BUREAU WILL HAVE MORE ON THIS BREAKING DEVELOPMEN

Advertisement

New Mexico reaction to Trump’s deadline on Iran war

Sen. Ben Ray Luján says Trump is waging an illegal war

Updated: 7:06 PM MDT Apr 7, 2026

Advertisement

Editorial Standards

Protesters gathered Tuesday in front of Kirtland Air Force Base in Albuquerque, a familiar location for demonstrations, as tensions rose following the missed deadline to open the Strait of Hormuz. “What would make me happy is a universal purge of the White House and the Pentagon. There’s no reason to have these war criminals in our service, or even in our gene pool anymore,” one protester said. The Democratic Party of New Mexico called for President Trump’s impeachment in an email sent to KOAT on Tuesday. U.S. Sen. Ben Ray Luján, who was in Albuquerque that day, addressed the issue. “Do you think he should be removed from office?” asked KOAT reporter John Rupolo.”We’ll see what happens in the House of Representatives, which is where there would be any impeachment consideration or hearings,” Luján said. Luján also reacted to a social media post by Trump in which the president called for attacks on infrastructure, bridges, and power plants if a deal was not reached by Tuesday night. “There has still not been a vote that Republicans have brought to the Senate floor, giving the president the tools that any president would need to go to war and a umph. This president is going at it again recklessly,” Luján said. While Luján stopped short of labeling Trump a war criminal, he expressed strong criticism of the president’s actions. “When the president is threatening the elimination of a civilization of people, I would argue that that is breaking U.S. law. Federal law. Global law as well,” Luján said.We reached out to state Republican leaders, but they refused to comment. We also reached out to the New Mexico Republican Party and never heard back.

Advertisement

Protesters gathered Tuesday in front of Kirtland Air Force Base in Albuquerque, a familiar location for demonstrations, as tensions rose following the missed deadline to open the Strait of Hormuz.

“What would make me happy is a universal purge of the White House and the Pentagon. There’s no reason to have these war criminals in our service, or even in our gene pool anymore,” one protester said.

The Democratic Party of New Mexico called for President Trump’s impeachment in an email sent to KOAT on Tuesday. U.S. Sen. Ben Ray Luján, who was in Albuquerque that day, addressed the issue.

Advertisement

“Do you think he should be removed from office?” asked KOAT reporter John Rupolo.

“We’ll see what happens in the House of Representatives, which is where there would be any impeachment consideration or hearings,” Luján said.

Luján also reacted to a social media post by Trump in which the president called for attacks on infrastructure, bridges, and power plants if a deal was not reached by Tuesday night.

“There has still not been a vote that Republicans have brought to the Senate floor, giving the president the tools that any president would need to go to war and a umph. This president is going at it again recklessly,” Luján said.

While Luján stopped short of labeling Trump a war criminal, he expressed strong criticism of the president’s actions.

Advertisement

“When the president is threatening the elimination of a civilization of people, I would argue that that is breaking U.S. law. Federal law. Global law as well,” Luján said.

We reached out to state Republican leaders, but they refused to comment. We also reached out to the New Mexico Republican Party and never heard back.

Advertisement



Source link

Continue Reading

Trending