{"id":1317,"date":"2026-03-27T17:42:14","date_gmt":"2026-03-27T17:42:14","guid":{"rendered":"https:\/\/mekteb.us\/?p=1317"},"modified":"2026-04-07T05:50:41","modified_gmt":"2026-04-07T05:50:41","slug":"vaktija","status":"publish","type":"post","link":"https:\/\/mekteb.us\/en\/vaktija\/","title":{"rendered":"Vaktija"},"content":{"rendered":"\n<!doctype html>\n<html lang=\"bs\">\n<head>\n<meta charset=\"utf-8\">\n<meta name=\"viewport\" content=\"width=device-width,initial-scale=1\">\n<title>Digitalna Vaktija<\/title>\n\n<style>\n*{box-sizing:border-box}\nbody{\n  margin:0;\n  background:#0f1115;\n  font-family:Arial, sans-serif;\n  display:flex;\n  align-items:center;\n  justify-content:center;\n  min-height:100vh;\n}\n\n\/* \u2705 klik = expand *\/\n.container{\n  width:min(900px,95vw);\n  background:linear-gradient(180deg,#ffffff,#eef2f3);\n  border-radius:30px;\n  padding:30px;\n  box-shadow:0 30px 80px rgba(0,0,0,.5);\n  cursor:pointer;\n  user-select:none;\n  -webkit-tap-highlight-color:transparent;\n  position:relative;\n\n  \/* da layout bude stabilan *\/\n  display:flex;\n  flex-direction:column;\n  gap:0;\n}\n\n\/* \u2705 \u201cla\u017eni fullscreen\u201d *\/\n.container.expanded{\n  position:fixed;\n  inset:0;\n  width:100vw;\n  height:100vh;\n  border-radius:0;\n  padding:30px;\n  box-shadow:none;\n  z-index:9999;\n\n  overflow:auto;\n}\n\n\/* dugme zatvori (samo kad je expanded) *\/\n.closeBtn{\n  display:none;\n  position:absolute;\n  top:14px;\n  right:14px;\n  background:rgba(0,0,0,.45);\n  color:#fff;\n  border:1px solid rgba(255,255,255,.25);\n  border-radius:999px;\n  padding:10px 14px;\n  font-weight:900;\n  font-size:14px;\n  cursor:pointer;\n}\n.container.expanded .closeBtn{ display:block; }\n\nh1{\n  text-align:center;\n  margin:0 0 10px 0;\n  font-size:26px;\n  letter-spacing:2px;\n}\n\n.clock{\n  text-align:center;\n  font-size:60px;\n  font-weight:900;\n  margin:10px 0;\n}\n\n.dates{\n  text-align:center;\n  margin-bottom:20px;\n  font-weight:700;\n}\n\n.status{\n  text-align:center;\n  font-weight:800;\n  font-size:14px;\n  color:#666;\n  margin:0 0 12px 0;\n}\n\n#list{\n  \/* da se lista uvijek vidi i raste *\/\n  flex:1;\n}\n\n.row{\n  display:flex;\n  justify-content:space-between;\n  align-items:center;\n  padding:14px 18px;\n  border-radius:15px;\n  margin-bottom:10px;\n  font-size:22px;\n  font-weight:700;\n  background:#f4f4f4;\n}\n\n.active{\n  background:#14a06a;\n  color:white;\n}\n\n.footer{\n  text-align:center;\n  margin-top:10px;\n  font-size:14px;\n  color:#555;\n}\n<\/style>\n<\/head>\n\n<body>\n\n<div id=\"wrap\" class=\"container\" onclick=\"toggleExpand()\">\n  <button class=\"closeBtn\" type=\"button\" onclick=\"closeOnly(event)\">ZATVORI<\/button>\n\n  <h1>ISLAMSKO-EDUKATIVNI CENTAR EZAN<\/h1>\n\n  <div id=\"clock\" class=\"clock\">&#8211;:&#8211;:&#8211;<\/div>\n\n  <div class=\"dates\">\n    <div id=\"gregorian\">\u2014<\/div>\n    <div id=\"hijri\">\u2014<\/div>\n  <\/div>\n\n  <div id=\"status\" class=\"status\">U\u010ditavam vaktiju\u2026<\/div>\n\n  <div id=\"list\"><\/div>\n\n  <div class=\"footer\">Des Moines, IA \u2022 Automatska Vaktija<\/div>\n<\/div>\n\n<script>\nconst CITY = \"Des Moines\";\nconst COUNTRY = \"United States\";\nconst METHOD = 2; \/\/ ISNA\n\nlet cachedPrayers = null; \/\/ \u2705 cache (da expand ne bri\u0161e)\n\nfunction pad(n){ return n<10?\"0\"+n:n; }\n\nfunction updateClock(){\n  const now = new Date();\n\n  document.getElementById(\"clock\").textContent =\n    pad(now.getHours())+\":\"+pad(now.getMinutes())+\":\"+pad(now.getSeconds());\n\n  try{\n    document.getElementById(\"gregorian\").textContent =\n      now.toLocaleDateString(\"bs-BA\",{weekday:\"long\", day:\"numeric\", month:\"long\", year:\"numeric\"});\n  }catch(e){\n    document.getElementById(\"gregorian\").textContent = now.toDateString();\n  }\n\n  try{\n    const hijri = new Intl.DateTimeFormat(\"en-TN-u-ca-islamic\",\n      {day:\"numeric\", month:\"long\", year:\"numeric\"}).format(now);\n    document.getElementById(\"hijri\").textContent = hijri + \" AH\";\n  }catch(e2){\n    document.getElementById(\"hijri\").textContent = \"\u2014\";\n  }\n\n  highlightCurrentPrayer();\n}\n\nsetInterval(updateClock,1000);\nupdateClock();\n\n\/* \u2705 render iz cache-a (ne bri\u0161e na klik) *\/\nfunction renderPrayerList(prayers){\n  const list = document.getElementById(\"list\");\n  if(!list) return;\n\n  list.innerHTML = \"\";\n  for(let i=0;i<prayers.length;i++){\n    const p = prayers[i];\n    const row = document.createElement(\"div\");\n    row.className = \"row\";\n    row.innerHTML = \"<span>\"+p.name+\"<\/span><span>\"+p.time+\"<\/span>\";\n    list.appendChild(row);\n  }\n  highlightCurrentPrayer();\n}\n\n\/* \u2705 u\u010ditaj jednom, pa cache *\/\nasync function loadPrayerTimesOnce(){\n  const statusEl = document.getElementById(\"status\");\n\n  \/\/ ako ve\u0107 imamo cache, samo prika\u017ei\n  if(cachedPrayers){\n    statusEl.textContent = \"Vaktija u\u010ditana \u2705\";\n    renderPrayerList(cachedPrayers);\n    return;\n  }\n\n  statusEl.textContent = \"U\u010ditavam vaktiju\u2026\";\n\n  try{\n    const url = \"https:\/\/api.aladhan.com\/v1\/timingsByCity?city=\" +\n      encodeURIComponent(CITY) + \"&country=\" + encodeURIComponent(COUNTRY) +\n      \"&method=\" + METHOD;\n\n    const res = await fetch(url);\n    const data = await res.json();\n    const t = data.data.timings;\n\n    cachedPrayers = [\n      {name:\"Sabah\",          time:(t.Fajr||\"--:--\").slice(0,5)},\n      {name:\"Izlazak sunca\",  time:(t.Sunrise||\"--:--\").slice(0,5)},\n      {name:\"Podne\",          time:(t.Dhuhr||\"--:--\").slice(0,5)},\n      {name:\"Ikindija\",       time:(t.Asr||\"--:--\").slice(0,5)},\n      {name:\"Ak\u0161am\",          time:(t.Maghrib||\"--:--\").slice(0,5)},\n      {name:\"Jacija\",         time:(t.Isha||\"--:--\").slice(0,5)}\n    ];\n\n    statusEl.textContent = \"Vaktija u\u010ditana \u2705\";\n    renderPrayerList(cachedPrayers);\n\n  }catch(err){\n    statusEl.textContent = \"Ne mogu u\u010ditati vaktiju (internet\/API).\";\n  }\n}\n\nfunction highlightCurrentPrayer(){\n  const rows = document.querySelectorAll(\".row\");\n  if(!rows.length) return;\n\n  rows.forEach(r=>r.classList.remove(\"active\"));\n\n  const now = new Date();\n  const currentTime = now.getHours()*60 + now.getMinutes();\n\n  for(let i=0;i<rows.length;i++){\n    const timeText = rows[i].children[1].textContent;\n    const parts = timeText.split(\":\");\n    if(parts.length < 2) continue;\n\n    const prayerTime = parseInt(parts[0],10)*60 + parseInt(parts[1],10);\n    if(currentTime >= prayerTime){\n      rows.forEach(x=>x.classList.remove(\"active\"));\n      rows[i].classList.add(\"active\");\n    }\n  }\n}\n\n\/* \u2705 Expand toggle: samo promijeni klasu + render iz cache-a *\/\nfunction toggleExpand(){\n  const wrap = document.getElementById(\"wrap\");\n  if(!wrap) return;\n\n  if(wrap.className.indexOf(\"expanded\") !== -1){\n    wrap.className = \"container\";\n  }else{\n    wrap.className = \"container expanded\";\n  }\n\n  \/\/ ni\u0161ta ne bri\u0161emo; samo ponovo iscrtaj iz cache-a ako postoji\n  if(cachedPrayers){\n    renderPrayerList(cachedPrayers);\n  }\n}\n\nfunction closeOnly(e){\n  if(e && e.stopPropagation) e.stopPropagation();\n  const wrap = document.getElementById(\"wrap\");\n  if(wrap) wrap.className = \"container\";\n}\n\n\/* \u2705 start *\/\nloadPrayerTimesOnce();\n<\/script>\n\n<\/body>\n<\/html>\n","protected":false},"excerpt":{"rendered":"<div class=\"mh-excerpt\"><p>Digitalna Vaktija ZATVORI ISLAMSKO-EDUKATIVNI CENTAR EZAN &#8211;:&#8211;:&#8211; \u2014 \u2014 U\u010ditavam vaktiju\u2026 Des Moines, IA \u2022 Automatska Vaktija<\/p>\n<\/div>","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"nf_dc_page":"","om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[1],"tags":[],"class_list":{"0":"post-1317","1":"post","2":"type-post","3":"status-publish","4":"format-standard","6":"category-uncategorized"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Vaktija - IEC EZAN<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/mekteb.us\/en\/vaktija\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Vaktija - IEC EZAN\" \/>\n<meta property=\"og:description\" content=\"Digitalna Vaktija ZATVORI ISLAMSKO-EDUKATIVNI CENTAR EZAN &#8211;:&#8211;:&#8211; \u2014 \u2014 U\u010ditavam vaktiju\u2026 Des Moines, IA \u2022 Automatska Vaktija\" \/>\n<meta property=\"og:url\" content=\"https:\/\/mekteb.us\/en\/vaktija\/\" \/>\n<meta property=\"og:site_name\" content=\"IEC EZAN\" \/>\n<meta property=\"article:published_time\" content=\"2026-03-27T17:42:14+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-04-07T05:50:41+00:00\" \/>\n<meta name=\"author\" content=\"Muhadzir\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Muhadzir\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/mekteb.us\\\/en\\\/vaktija\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/mekteb.us\\\/en\\\/vaktija\\\/\"},\"author\":{\"name\":\"Muhadzir\",\"@id\":\"https:\\\/\\\/mekteb.us\\\/#\\\/schema\\\/person\\\/30a775d0a21e7a19bbbefada2bfe7285\"},\"headline\":\"Vaktija\",\"datePublished\":\"2026-03-27T17:42:14+00:00\",\"dateModified\":\"2026-04-07T05:50:41+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/mekteb.us\\\/en\\\/vaktija\\\/\"},\"wordCount\":18,\"commentCount\":0,\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/mekteb.us\\\/en\\\/vaktija\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/mekteb.us\\\/en\\\/vaktija\\\/\",\"url\":\"https:\\\/\\\/mekteb.us\\\/en\\\/vaktija\\\/\",\"name\":\"Vaktija - IEC EZAN\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/mekteb.us\\\/#website\"},\"datePublished\":\"2026-03-27T17:42:14+00:00\",\"dateModified\":\"2026-04-07T05:50:41+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/mekteb.us\\\/#\\\/schema\\\/person\\\/30a775d0a21e7a19bbbefada2bfe7285\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/mekteb.us\\\/en\\\/vaktija\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/mekteb.us\\\/en\\\/vaktija\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/mekteb.us\\\/en\\\/vaktija\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/mekteb.us\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Vaktija\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/mekteb.us\\\/#website\",\"url\":\"https:\\\/\\\/mekteb.us\\\/\",\"name\":\"IEC EZAN\",\"description\":\"6206 Douglas Ave, Iowa 50322\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/mekteb.us\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/mekteb.us\\\/#\\\/schema\\\/person\\\/30a775d0a21e7a19bbbefada2bfe7285\",\"name\":\"Muhadzir\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1a2a8b4d0bab756e04880db0c5ed19ee158264e9889303df7f63c5e6f686a8fb?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1a2a8b4d0bab756e04880db0c5ed19ee158264e9889303df7f63c5e6f686a8fb?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1a2a8b4d0bab756e04880db0c5ed19ee158264e9889303df7f63c5e6f686a8fb?s=96&d=mm&r=g\",\"caption\":\"Muhadzir\"},\"url\":\"https:\\\/\\\/mekteb.us\\\/en\\\/author\\\/muhadjir\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Vaktija - IEC EZAN","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/mekteb.us\/en\/vaktija\/","og_locale":"en_US","og_type":"article","og_title":"Vaktija - IEC EZAN","og_description":"Digitalna Vaktija ZATVORI ISLAMSKO-EDUKATIVNI CENTAR EZAN &#8211;:&#8211;:&#8211; \u2014 \u2014 U\u010ditavam vaktiju\u2026 Des Moines, IA \u2022 Automatska Vaktija","og_url":"https:\/\/mekteb.us\/en\/vaktija\/","og_site_name":"IEC EZAN","article_published_time":"2026-03-27T17:42:14+00:00","article_modified_time":"2026-04-07T05:50:41+00:00","author":"Muhadzir","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Muhadzir","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/mekteb.us\/en\/vaktija\/#article","isPartOf":{"@id":"https:\/\/mekteb.us\/en\/vaktija\/"},"author":{"name":"Muhadzir","@id":"https:\/\/mekteb.us\/#\/schema\/person\/30a775d0a21e7a19bbbefada2bfe7285"},"headline":"Vaktija","datePublished":"2026-03-27T17:42:14+00:00","dateModified":"2026-04-07T05:50:41+00:00","mainEntityOfPage":{"@id":"https:\/\/mekteb.us\/en\/vaktija\/"},"wordCount":18,"commentCount":0,"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/mekteb.us\/en\/vaktija\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/mekteb.us\/en\/vaktija\/","url":"https:\/\/mekteb.us\/en\/vaktija\/","name":"Vaktija - IEC EZAN","isPartOf":{"@id":"https:\/\/mekteb.us\/#website"},"datePublished":"2026-03-27T17:42:14+00:00","dateModified":"2026-04-07T05:50:41+00:00","author":{"@id":"https:\/\/mekteb.us\/#\/schema\/person\/30a775d0a21e7a19bbbefada2bfe7285"},"breadcrumb":{"@id":"https:\/\/mekteb.us\/en\/vaktija\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/mekteb.us\/en\/vaktija\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/mekteb.us\/en\/vaktija\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/mekteb.us\/"},{"@type":"ListItem","position":2,"name":"Vaktija"}]},{"@type":"WebSite","@id":"https:\/\/mekteb.us\/#website","url":"https:\/\/mekteb.us\/","name":"IEC EZAN","description":"6206 Douglas Ave, Iowa 50322","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/mekteb.us\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/mekteb.us\/#\/schema\/person\/30a775d0a21e7a19bbbefada2bfe7285","name":"Muhadzir","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/1a2a8b4d0bab756e04880db0c5ed19ee158264e9889303df7f63c5e6f686a8fb?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/1a2a8b4d0bab756e04880db0c5ed19ee158264e9889303df7f63c5e6f686a8fb?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/1a2a8b4d0bab756e04880db0c5ed19ee158264e9889303df7f63c5e6f686a8fb?s=96&d=mm&r=g","caption":"Muhadzir"},"url":"https:\/\/mekteb.us\/en\/author\/muhadjir\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/mekteb.us\/en\/wp-json\/wp\/v2\/posts\/1317","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/mekteb.us\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/mekteb.us\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/mekteb.us\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/mekteb.us\/en\/wp-json\/wp\/v2\/comments?post=1317"}],"version-history":[{"count":2,"href":"https:\/\/mekteb.us\/en\/wp-json\/wp\/v2\/posts\/1317\/revisions"}],"predecessor-version":[{"id":1329,"href":"https:\/\/mekteb.us\/en\/wp-json\/wp\/v2\/posts\/1317\/revisions\/1329"}],"wp:attachment":[{"href":"https:\/\/mekteb.us\/en\/wp-json\/wp\/v2\/media?parent=1317"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/mekteb.us\/en\/wp-json\/wp\/v2\/categories?post=1317"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/mekteb.us\/en\/wp-json\/wp\/v2\/tags?post=1317"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}