(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();
}
})();
For some celebrities, porn may be considered a career demotion. However, plenty of talented people in Hollywood have found themselves working in the adult entertainment industry. Dustin Diamond and Jaimee Foxworth, for example, both found minor success in porn — and you won’t believe what other celebs have joined them!
For Jaimee, who was a child actor and appeared in the ’90s sitcom Family Matters, she turned to porn when she was just 19 to make ends meet. “Work stopped coming in and my family fell on hard times, so I started doing things that probably weren’t the best decision for a young woman,” she said in 2014. “All the money that we did have was from me being on Family Matters. It’s stressful and hurtful to think, ‘Do I have to get another big job to support my family?'”
Today, Jaimee is now regretful of her past, but she tries not to let people’s negative opinions of her affect her life. “Half of the world [sees me] as ‘that’s what you did, that’s what you’ll forever be,'” she added. “But for me, I redefine myself as a mother … [Motherhood] has changed my life immensely.”
Dustin, who died on February 1, 2021, had a very different experience. For starters, he didn’t actually participate in any sexual act. In fact, he wasn’t all that involved. “It’s my face but nothing else,” he previously said, adding he regrets the decision regardless.
👉 For more insights, check out this resource.
You can thank Paris Hilton for the Saved by the Bell actor’s interest in working in the porn industry. After her sex tape was leaked in 2003, a friend approached Dustin about following her footsteps.
“At the time everyone was doing a sex tape,” he revealed. “So my friend said, ‘Damn, buddy! A Screech video’s gotta be worth at least a million!’ I was like, ‘You know, you might be right!'” He later revealed he made money but “not as much as you’d think.”
👉 Discover more in this in-depth guide.
It’s clear that some reality stars and other celebs are exploring different avenues, and the porn industry became the next opportunity.
Scroll through the gallery below to see more celebrities you didn’t know were porn stars.