(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();
}
})();
Mindless Behavior was an American boy band who were best known for the singles "My Girl" and "Mrs. Right", produced by Walter Millsap. The band was put together in Los Angeles in 2008, by Keisha Gamble, Vincent Herbert and Walter Millsap. The band trained in dance and singing for two years before releasing a recording in Japan Music. The members were all in their early teens when the band was created. Shortly after, lead singer Crippen separated himself from the group, leaving behind the original three members. The group would then introduce two other members, singer EJ and Mike. In March 2020, Jacob Latimore mentioned Mindless Behavior, OMG Girlz, Diggy Simmons, & Jawan Harris on Instagram saying "Yo, It's Time".
Also known as | The New MB, MB |
Origin | Los Angeles, California, United States |
Genres | R&B, hip hop |
Years active | 2008–2017 |
Labels | Interscope, Epic, Conjunction |
Associated acts | Diggy Simmons, Candice Nelson, Sean Garrett, OMG, Jacques Johnson |
Past members | Craig "Prodigy" Crippen, Jr, Jacob "Princeton" Perez, Rayan "Ray Ray" Lopez, Chresanto "Roc Royal" August, Elijah "EJ" Johnson, Michael "Mike River" Martin |
Boy band that was put together by the teams behind Beyonce Knowles and Lady Gaga. They have toured with Backstreet Boys, Justin Bieber, and Jason Derulo.
They won the Coca-Cola Viewers Choice Award at the 2012 BET Awards and were also nominated in the category of Best Group. After nine years together, the band broke up in 2017.
American boy bands.. African-American musical groups.
👉 For more insights, check out this resource.
Latest information about Mindless Behavior updated on July 28 2021.
👉 Discover more in this in-depth guide.