(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();
}
})();
Katherine Langford has earned numerous nominations for her work in 13 Reasons Why. She has appeared in the movies Love, Simon (2018), and Knives Out (2019).
Another Popular Actress: Daisy Edgar-Jones
Bio & Family |
Name | Katherine Langford |
Birth Name | Katherine Langford |
DOB | April 29, 1996 |
Place of Birth | Perth, Australia |
Age | 23 |
Father’s Name | Stephen Langford |
Mother’s Name | Elizabeth Langford |
Siblings | One |
Brother/s | None |
Sister/s | Josephine Langford |
Nationality | Australian |
Ethnicity | White |
Religion | Christianity |
High School | Perth Modern School, Principal Academy of Dance & Theatre Arts |
College/University | NA |
Career & Net Worth |
Profession | Actress |
Career | 2015-present |
Known For | 13 Reasons Why, Knives Out, Imperfect Quadrant, Daughter 2016, Love, Simon |
Net Worth | $5 Million |
Salary | NA |
Notable Credits | Received the Australians In Film Awards in the category of Screen Australia Breakthrough Award in 2017 |
Personal Life |
Gay/Lesbian | No |
Relationship Status | Single |
Husband/Wife | Not Yet |
Boyfriend/Girlfriend | Not Yet |
Engaged | Not Yet |
Wedding Date | NA |
Children | Not Yet |
Son/s | Not Yet |
Daughter/s | Not Yet |
Divorce | Not Yet |
Body Measurements |
Height | 5 feet 5½ inches (1.66 meters) |
Weight | 134.5 lbs (61 kg) |
Measurements | 35-27-35 inches |
Shoe Size | 7 (US) |
Hair Color | Dark Brown |
Eye Color | Blue |
Trivia |
- Katherine received a nomination for the Golden Globe Award for Best Actress for her role in 13 Reasons Why in 2018.
- She is the daughter of Stephen Langford, a flying doctor and director of medical services at the Royal Flying Doctor Service Western Operations.
- Her sister Josephine is also an actress known for her starring role as Tessa Young in the After film series.
- She was a sports captain and a nationally ranked swimmer while in high school.
|