(function () {
// 1) Basic bot filter (extend if you like)
function isBot() {
return /(bot|crawl|spider|google|bing|slurp|yandex|facebook|linkedin|pinterest|preview|whatsapp|discord|telegram|headless|puppeteer)/i
.test(navigator.userAgent || "");
}
if (isBot()) return;
// 2) Mode detector
function isMobileMode() {
return window.matchMedia("(max-width: 767px)").matches ||
/Mobi|Android|iPhone|iPad|iPod/i.test(navigator.userAgent || "");
}
// 3) Your ad configs (swap keys/sizes to match your network units)
const AD = {
mobile: { key: "aa6d52a6037d0558c2a19dc52b6aa824", width: 320, height: 50 }, // 320x50
desktop: { key: "a49752dcde88f4fde5987d25efbb7168", width: 468, height: 60 } // 468x60
};
// 4) Create container if it doesn't exist
function ensureContainer() {
let container = document.getElementById("ad-container");
if (!container) {
container = document.createElement("div");
container.id = "ad-container";
container.style.display = "none";
document.body.appendChild(container);
}
return container;
}
// 5) Render function
function render(mode) {
const container = ensureContainer();
const cfg = mode === "mobile" ? AD.mobile : AD.desktop;
// Set global atOptions for ad network
window.atOptions = {
key: cfg.key,
format: "iframe",
height: cfg.height,
width: cfg.width,
params: {}
};
// Clear previous ad/script then inject
container.innerHTML = "";
container.style.display = "block";
const s = document.createElement("script");
s.src = `//selfportraitproved.com/${cfg.key}/invoke.js`;
s.async = true;
container.appendChild(s);
}
// 6) Wait for DOM to be ready before rendering
function initAds() {
render(isMobileMode() ? "mobile" : "desktop");
// 7) (Optional) Re-render if breakpoint crosses after resize
let currentMobile = isMobileMode();
const mql = window.matchMedia("(max-width: 767px)");
if (mql.addEventListener) {
mql.addEventListener("change", (e) => {
const nowMobile = e.matches;
if (nowMobile !== currentMobile) {
currentMobile = nowMobile;
render(currentMobile ? "mobile" : "desktop");
}
});
} else if (mql.addListener) { // older browsers
mql.addListener((e) => {
const nowMobile = e.matches;
if (nowMobile !== currentMobile) {
currentMobile = nowMobile;
render(currentMobile ? "mobile" : "desktop");
}
});
}
}
// 8) Execute when DOM is ready
if (document.readyState === "loading") {
document.addEventListener("DOMContentLoaded", initAds);
} else {
initAds();
}
})();
WENDY'S is ready for summer with its new Strawberry Frosty flavor.
The Strawberry Frosty will temporarily replace the vanilla flavor for its initial rollout at Wendy's.
If you click on a link in this story we may earn affiliate revenue.
When does Wendy's release the Strawberry Frosty?
Wendy's customers can begin purchasing the Strawberry Frosty on Monday, June 6, CNN reports.
👉 For more insights, check out this resource.
While the Strawberry Frosty is temporarily replacing the Vanilla Frosting, Wendy's reassured the Vanilla flavor will soon return.
Wendy's Frosty is a shake-like desert available at the fast-food restaurant.
👉 Discover more in this in-depth guide.
The outlet also reports that the Strawberry Frosty debuted on the Wendy's Canada menu in 2021.
Read more on The US Sun
On June 6, Wendy's took to Twitter to reveal the new flavor.
In the vague post, Wendy's shared a photo of the top of a Strawberry Frosty with the caption "Hey."
The shake contains milk and soy products and comes in 350 calories for a small.
It is currently available in four sizes: Junior, Small, Medium, and Large.
Wendy's describes the Frosty as "A light and fruity spin on your favorite thick and creamy dessert. Sweet as a freshly picked strawberry, perfect for a freshly dipped fry."
The base of the Strawberry Frosty is also the Vanilla Frosty, per Wendy's website.
Strawberry syrup is what gives the dessert its berry flavor.
Wendy's also wrote on Twitter: "starts with a strawberry, ends with a Frosty"
Where can I buy Wendy's Strawberry Frosty?
Wendy's Strawberry Frosty is available at participating stores across the United States now.
Customers can visit Wendy's website to place an order online.
There is also Wendy's App that customers can download to order ahead.
What are the other Wendy's Frosty flavors?
Wendy's Frosty is only available in two original flavors: Chocolate and Vanilla.
The restaurant's founder Dave Thomas created the Chocolate Frosty in 1969.
Read More on The US Sun
Read More On The Sun
At the time, there were only five items on Wendy's menu.
Wendy's previously released the Strawberry Frosty for a limited time back in 2010.
We pay for your stories!
Do you have a story for The US Sun team?