fetch("https://www.sefaria.org/api/calendars") .then(response => response.json()) .then(data => { data.calendar_items.forEach(item => { const title = item.title.en; if (title === "Daily Mishnah") { const ref = item.ref; const url = `https://www.sefaria.org/${item.url}`; console.log(`${title}: ${ref}`); console.log(`URL: ${url}`); const iframe = document.createElement("iframe"); iframe.className = "custom-embed"; iframe.style.border = "none"; iframe.src = url; iframe.width = "100%"; iframe.height = "1200px"; const container = document.getElementById("daily-mishnah-container"); if (container) { container.innerHTML = ""; container.appendChild(iframe); } else { console.error("Container with ID 'daily-mishnah-container' not found."); } } }); }) .catch(error => console.error("Error fetching data:", error)); Daily Mishnah