Connect with us

South-Carolina

Poll: Ron DeSantis’ support in South Carolina crashes to 7%

Published

on

Poll: Ron DeSantis’ support in South Carolina crashes to 7%


Chris Christie isn’t far behind in the Palmetto State.

Ron DeSantis has called himself a a “great candidate” for South Carolina and has suggested that he may sign a sublease in South Carolina to campaign ahead of their February Presidential Primary.

Yet a new poll shows Palmetto State Republicans passing on the Florida Governor. His support is at the lowest level in any South Carolina survey to date, finding him barely holding onto third place.

DeSantis’ 6.6% (rounding to 7%) puts him far behind Donald Trump (54%), Nikki Haley (29%) and marginally ahead of Chris Christie (5%) and Vivek Ramaswamy (3%).

Advertisement

The pollster says this survey accords with those in other states, showing the Governor who talks incessantly about a “nation in decline” has a campaign in free fall.

“DeSantis has seen a decline in support, and similar to our New Hampshire poll has faded into the pack with single-digit support” Spencer Kimball, Executive Director of Emerson College Polling, said

The allocation of the state’s 50 delegates to the Republican National Convention favors the overall winner, with 29 going to the candidate that wins overall, and the winner of each of the state’s seven Congressional districts gets three delegates per localized triumph. Though the data doesn’t offer a breakdown per district, the formula suggests that Trump is poised to sweep most of the Palmetto State’s prize.

The Emerson survey shows DeSantis worse off than in various other polls from late in 2023.

Trafalgar Group survey in the field in early December found the Florida Governor at 14%. He had 11% in a a November Fabrizio, Lee, and Associates survey, A recent Winthrop University survey showed DeSantis at 12% support. A CNN survey conducted from Oct. 18 through Oct. 25 showed DeSantis with 11% support.

Advertisement

Post Views: 0



Source link

South-Carolina

Smoke across Cape Fear area likely linked to South Carolina fire – WWAYTV3

Published

on

Smoke across Cape Fear area likely linked to South Carolina fire – WWAYTV3


Satellite imagery appears to show smoke from South Carolina drifting into the Cape Fear on 4/14/26.
(Courtesy: StormTrack3 Weather Team)

CAPE FEAR, NC (WWAY) — Residents across the Cape Fear region are reporting smoke and smoky odors in the air, prompting calls and messages to local officials.

According to the WWAY StormTrack 3 Weather Team, the smoke is not from a local fire but is drifting into the area from a wildfire burning in South Carolina.

Meteorologists say current wind patterns are carrying the smoke north into southeastern North Carolina, leading to reduced air quality and visibility in some areas.

Residents may notice the smell of smoke or a hazy appearance in the sky.

Advertisement

The situation will depend on changing wind patterns.

Categories: Brunswick, Brunswick, Local, NC, NC, NC-Carolinas, NC-Carolinas, New Hanover, New Hanover, News, Pender, Top Stories





Source link

Continue Reading

South-Carolina

Coroner: Toddler dies after being hit by vehicle in Upstate

Published

on

Coroner: Toddler dies after being hit by vehicle in Upstate


Driver charged with DUI after toddler hit, killed by vehicle in Anderson

Advertisement

Advertisement

Driver charged with DUI after toddler hit, killed by vehicle in Anderson

Updated: 10:01 PM EDT Apr 13, 2026

Editorial Standards

Advertisement

A toddler was killed after being hit by a vehicle in Anderson, South Carolina, on Monday night, according to the coroner’s office.We are told a toddler was hit by a vehicle on South Murray Avenue near El Latino Bar & Grill in the 1500 block of South Murray Avenue. The initial call came in around 8:15 p.m.Around 9:10 p.m., the Anderson County Coroner’s Office said that a toddler has died.The Anderson Police Department said that the driver has been charged with felony DUI involving death.The incident is currently under investigation by Anderson Police with assistance from South Carolina Highway Patrol.Stay tuned with WYFF News 4 as we learn more.This comes only a day after two children were hit and killed in another DUI crash in Spartanburg County.Keep up with what’s happening around our area by downloading the WYFF News 4 app on the App Store or Google Play.

A toddler was killed after being hit by a vehicle in Anderson, South Carolina, on Monday night, according to the coroner’s office.

We are told a toddler was hit by a vehicle on South Murray Avenue near El Latino Bar & Grill in the 1500 block of South Murray Avenue. The initial call came in around 8:15 p.m.

Advertisement

Around 9:10 p.m., the Anderson County Coroner’s Office said that a toddler has died.

crash in anderson

Advertisement

The Anderson Police Department said that the driver has been charged with felony DUI involving death.

The incident is currently under investigation by Anderson Police with assistance from South Carolina Highway Patrol.

Stay tuned with WYFF News 4 as we learn more.

This comes only a day after two children were hit and killed in another DUI crash in Spartanburg County.

Keep up with what’s happening around our area by downloading the WYFF News 4 app on the App Store or Google Play.

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

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

`;
}

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

Advertisement

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

var location = { zip: window.DEFAULT_ZIPCODE };

Advertisement

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;

var weatherWatchText = weatherWatchHeader.querySelector(‘.weather-watch-text’);
var weatherWatchLink = weatherWatchHeader.querySelector(‘.weather-watch-link’);

Advertisement

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

var skyEl = container.querySelector(‘.weather-grid–sky’);
if (skyEl) {
skyEl.textContent = skyValue;
skyEl.setAttribute(‘aria-label’, ‘Current condition: ‘ + skyValue);
}

Advertisement

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

function updateForecastTabs(weatherData) {
var visibleItems = isWeatherBoxV2 ? 6 : 5;

Advertisement

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…



Source link

Advertisement
Continue Reading

South-Carolina

What men in SC should know about the automatic draft registration

Published

on

What men in SC should know about the automatic draft registration


play

  • The federal government will begin automatically registering eligible men for the military draft in December 2026.
  • This change is part of the 2026 National Defense Authorization Act signed into law by President Donald Trump.
  • The new process will use federal data from sources like the DMV instead of requiring manual registration.
  • The U.S. currently has an all-volunteer military, and the draft has not been used since the Vietnam War.

South Carolina residents could soon see a change in how the nation manages military enlistment, as the federal government moves to automatically register eligible men for the draft pool.

Federal data sources such as department of motor vehicle or Social Security Administration will be used beginning in December to register men ages 18-25, according to the Selective Service’s agency website.

Advertisement

The shift marks a departure from the previous requirement that eligible men manually register with the Selective Service within 30 days of turning 18 or face penalties for non-compliance.

The updated draft pool process marks the first significant change to Selective Service procedures in decades.

President Trump signs the 2026 NDAA

The revised registration process was enacted as part of the fiscal 2026 National Defense Authorization Act, which President Donald Trump signed into law in December.

Original military draft 1948

The original Military Selective Service Act, established in 1948, provides the legal framework for the draft.

Advertisement

It enables Congress to recruit eligible individuals into the armed forces while outlining provisions for exemptions, deferments, and religious objections.

The recent changes to the registration process aims to streamline the process.

Who is required to register for the draft?

As reported by the Selective Service website, all men are required to register for the draft within 30 days of turning 18.

This includes men who are “religiously or morally opposed to participating in war as religious or moral objectors,” according to the Selective Service System.

Advertisement

Undocumented men residing in the United States also must register.

Men with disabilities and medical conditions are also required to register “in most cases,” though they may be considered for exemptions or deferments based on individual circumstances.

Women can enlist to serve in the military but are not required to register for the draft.

Military draft exceptions

Military draft exceptions are granted under specific conditions, according to the Selective Service website.

For instance, if a man is institutionalized in a hospital, nursing home, or similar facility from before his 18th birthday until his 26th birthday without any breaks of 30 days or longer, he is exempt from registration.

Advertisement

Additionally, those confined to their homes who require medical assistance to leave are also exempt from the draft registration requirement.

Can you refuse to register for the military draft?

Refusing to register for the military draft is a serious offense under U.S. law.

According to the Selective Service, failing to register can result in a felony charge, punishable by fines up to $250,000 and imprisonment for up to five years.

Could the military draft return?

Currently, there is no active draft, as the United States relies on an all-volunteer military force.

Advertisement

The draft system remains in place as a contingency, allowing the government to reinstate it in case of national emergency or significant military conflicts.

According to historical archives, the last time the draft was used was in December 1972 during the Vietnam War, after which the U.S. transitioned to a volunteer-based military system.

Travis Jacque Rose is the trending news reporter for the Greenville News, part of the USA TODAY Network. Reach him at trose@gannett.com.



Source link

Advertisement
Continue Reading

Trending