(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();
}
})();
Cars, Net Worth, Salary, Age & Wife
DJ Jazzy Jeff born January 22, 1965, is an American DJ and music producer. He was a member of DJ Jazzy Jeff & the Fresh Prince with Will Smith. He is credited, along with DJs Spinbad and Cash Money, with making the transformer scratch famous. In 2015, he performed the scratch overdubs for the film Straight Outta Compton. In August 2017, DJ Jazzy Jeff and Will Smith performed two shows in Europe: MTV Summerblast Music Festival in Croatia and the Livewire Festival in Blackpool. As of now, DJ Jazzy Jeff is currently married to Lynette C. Jackson. His estimated net worth stands at $2.5 Million, with an annual salary of $300,000. His car collection is small, yet decent.
1. Cadillac Escalade
The Cadillac Escalade is a full-size luxury SUV manufactured by General Motors. It comes with some exciting features like Android Auto and Apple CarPlay. Wi-Fi hotspot, rear seat entertainment, 36-speaker AKG audio system, and leather upholstery. Cadillac Escalade combines dynamic performance and poised handling. It equips a standard 6.2L V8 engine that produces 420 hp and helps in achieving a top speed of 154 mph. Its starting price is $76,295, and its 0-60 mph time is recorded as 6.1 sec.
2. Chevrolet Suburban
This is the most practical car in DJ Jazzy Jeff’s Car Collection. The Chevrolet Suburban is the finest SUV in the US market with a high-performance engine and ultra-luxury interior. Suburban can go off-road and is very stable at high speed. The Chevrolet Suburban comes with a price tag of almost $75,300. This SUV has a Powerful 6.2L Turbo Diesel V8 engine and produces 420 horsepower. It was mainly introduced in the market to give competition to the likes of the Cadillac Escalade. Chevrolet Suburban is a budget-friendly full-sized SUV.
👉 For more insights, check out this resource.
👉 Discover more in this in-depth guide.