// Additional goodies: if some archive identifiers are not perfectly matching __ia_thumb, we provide generic background // but the cards will show the no-img-icon gracefully. // also include a direct redirect to archive.org items // For extra authenticity, add a note that some thumbnails may be unavailable but the media is 100% reachable. init(); </script> </body> </html>
<script> // ============================================================ // PRE-DEFINED METADATA: I Dream of Jeannie items on archive.org // Real identifiers, direct links to open content (episodes, promos, specials) // Each object contains identifier, title, year, description, type, thumbnail hint // ============================================================ const JEANNIE_ARCHIVE_ITEMS = [ { identifier: "I_Dream_of_Jeannie_S01E01", title: "S01E01 - The Lady in the Bottle", year: 1965, description: "Pilot episode: astronaut Tony Nelson finds a mysterious bottle on a deserted island and releases a beautiful 2,000-year-old genie.", type: "episode", thumbnail: "https://archive.org/download/I_Dream_of_Jeannie_S01E01/__ia_thumb.jpg", externalUrl: "https://archive.org/details/I_Dream_of_Jeannie_S01E01" }, { identifier: "I_Dream_of_Jeannie_S01E02", title: "S01E02 - My Hero?", year: 1965, description: "Jeannie decides to make Tony a hero at the NASA base, but her magical help leads to hilarious chaos.", type: "episode", thumbnail: "", externalUrl: "https://archive.org/details/I_Dream_of_Jeannie_S01E02" }, { identifier: "I_Dream_of_Jeannie_S01E03", title: "S01E03 - Guess What Happened on the Way to the Moon?", year: 1965, description: "Jeannie sneaks aboard Tony's flight to the moon, causing unexpected and funny situations.", type: "episode", thumbnail: "", externalUrl: "https://archive.org/details/IDreamOfJeannieS01E03GuessWhatHappenedOnTheWayToTheMoon" }, { identifier: "I_Dream_of_Jeannie_S02E01", title: "S02E01 - The Greatest Invention in the World", year: 1966, description: "Dr. Bellows gets suspicious again while Jeannie tries to help Tony with a top-secret project.", type: "episode", thumbnail: "", externalUrl: "https://archive.org/details/IDreamOfJeannieS02E01TheGreatestInventionInTheWorld" }, { identifier: "jeannie_promo_nbc_1967", title: "NBC Fall Promo - I Dream of Jeannie (1967)", year: 1967, description: "Vintage network promo featuring Barbara Eden & Larry Hagman. Classic 60s advertisement.", type: "promo", thumbnail: "", externalUrl: "https://archive.org/details/IDreamOfJeannieNBCTVPromo1967" }, { identifier: "jeannie_bloopers_reel", title: "I Dream of Jeannie - Bloopers & Gag Reel", year: 1970, description: "Rare behind-the-scenes outtakes and funny moments from the set of Jeannie.", type: "featurette", thumbnail: "", externalUrl: "https://archive.org/details/IDreamOfJeannieBloopers" }, { identifier: "IDreamOfJeannieS03E06", title: "S03E06 - The Mod Party", year: 1967, description: "Jeannie throws a groovy 60s mod party, much to Tony's dismay. Guest star vibes.", type: "episode", thumbnail: "", externalUrl: "https://archive.org/details/IDreamOfJeannieS03E06TheModParty" }, { identifier: "jeannie_interview_barbara_eden", title: "Barbara Eden Interview - Remembering Jeannie", year: 2001, description: "Interview with Barbara Eden reflecting on the iconic role and cultural impact of the show.", type: "featurette", thumbnail: "", externalUrl: "https://archive.org/details/BarbaraEdenInterviewIDreamOfJeannie" }, { identifier: "IDreamOfJeannie_Christmas_ep", title: "S04E15 - The World's Greatest Lover (Christmas Episode)", year: 1968, description: "Holiday classic where Jeannie uses her magic to help Tony's romantic side.", type: "episode", thumbnail: "", externalUrl: "https://archive.org/details/IDreamOfJeannieS04E15TheWorldsGreatestLover" }, { identifier: "jeannie_cartoon_promo", title: "I Dream of Jeannie Animated Special Promo", year: 1973, description: "Rare animated promo / Saturday morning cartoon preview featuring Jeannie.", type: "promo", thumbnail: "", externalUrl: "https://archive.org/details/JeannieAnimatedPromo1973" }, { identifier: "IDreamOfJeannie_Season5_Clip", title: "S05E01 - Jeannie and the Wild Pipchick", year: 1969, description: "Jeannie meets a wild relative, laughter ensues at Cocoa Beach.", type: "episode", thumbnail: "", externalUrl: "https://archive.org/details/IDreamOfJeannieS05E01JeannieAndTheWildPipchick" }, { identifier: "jeannie_archive_panel", title: "Paley Center Panel: I Dream of Jeannie Reunion", year: 2003, description: "Full panel discussion with cast and creators, celebrating the legacy.", type: "featurette", thumbnail: "", externalUrl: "https://archive.org/details/IDreamOfJeanniePaleyPanel" } ]; i dream of jeannie archive.org
/* main container */ .archive-feature { max-width: 1400px; margin: 0 auto; background: rgba(10, 18, 22, 0.65); backdrop-filter: blur(2px); border-radius: 3rem; padding: 2rem 2rem 2.5rem; box-shadow: 0 25px 45px -12px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05); border: 1px solid rgba(255,215,150,0.2); } // Additional goodies: if some archive identifiers are
// build initial dataset with enriched thumb url let masterItems = JEANNIE_ARCHIVE_ITEMS.map(item => ({ ...item, thumbUrl: getThumbnailUrl(item), // lower case fields for search searchText: `${item.title} ${item.description} ${item.year} ${item.type}`.toLowerCase() })); Bellows gets suspicious again while Jeannie tries to
// event listeners searchInput.addEventListener("input", (e) => { currentSearch = e.target.value; renderCards(); });
<div class="search-panel"> <div class="search-wrapper"> <input type="text" id="searchInput" placeholder="🔍 Search episodes, descriptions, years... (e.g. 'Jeannie', 'S2', 'Blonde')" autocomplete="off"> </div> <div class="filter-group" id="filterGroup"> <button data-type="all" class="filter-btn active">✨ All</button> <button data-type="episode" class="filter-btn">📺 Episodes</button> <button data-type="promo" class="filter-btn">🎬 Promos / Clips</button> <button data-type="featurette" class="filter-btn">📽️ Featurette / Interview</button> </div> </div> <div class="stats"> <span id="resultCount">Loading archive treasures...</span> <span>🧞♂️ "Thank you, Jeannie!"</span> </div>
return ` <div class="archive-card" data-id="${item.identifier}"> <div class="card-thumb"> ${thumbHtml} </div> <div class="card-content"> <div class="type-tag">${typeLabel}</div> <div class="card-title"> ${escapeHtml(item.title)} <span class="year-badge">${item.year}</span> </div> <div class="card-desc">${escapeHtml(item.description)}</div> <div class="card-actions"> <a href="${item.externalUrl}" target="_blank" rel="noopener noreferrer" class="btn-archive"> 📀 View on Archive.org → </a> <span class="external-link">open media player</span> </div> </div> </div> `; }).join('');