Category English Bible – KJV

Esther Chapter 3

Esther Chapter 3 For English Esther 3 Choose a Chapter 12345678910 A+ A A- Esther Chapter 3 1. After these things did king Ahasuerus promote Haman the son of Hammedatha the Agagite, and advanced him, and set his seat above…

Esther Chapter 2

Esther Chapter 2 For English Esther 2 Choose a Chapter 12345678910 A+ A A- Esther Chapter 2 1. After these things, when the wrath of king Ahasuerus was appeased, he remembered Vashti, and what she had done, and what was…

Esther Chapter 1

Esther Chapter 1 For English Esther 1 Choose a Chapter 12345678910 A+ A A- Esther Chapter 1 1. Now it came to pass in the days of Ahasuerus, (this is Ahasuerus which reigned, from India even unto Ethiopia, over an…

Nehemiah Chapter 13

Nehemiah Chapter 13 For English Nehemiah 13 Choose a Chapter 12345678910111213 A+ A A- Nehemiah Chapter 13 1. On that day they read in the book of Moses in the audience of the people; and therein was found written, that…

Nehemiah Chapter 12

Nehemiah Chapter 12 For English Nehemiah 12 Choose a Chapter 12345678910111213 A+ A A- Nehemiah Chapter 12 1. Now these are the priests and the Levites that went up with Zerubbabel the son of Shealtiel, and Jeshua: Seraiah, Jeremiah, Ezra,…

Nehemiah Chapter 11

Nehemiah Chapter 11 For English Nehemiah 11 Choose a Chapter 12345678910111213 A+ A A- Nehemiah Chapter 11 1. And the rulers of the people dwelt at Jerusalem: the rest of the people also cast lots, to bring one of ten…

Nehemiah Chapter 10

Nehemiah Chapter 10 For English Nehemiah 10 Choose a Chapter 12345678910111213 A+ A A- Nehemiah Chapter 10 1. Now those that sealed were, Nehemiah, the Tirshatha, the son of Hachaliah, and Zidkijah, 2. Seraiah, Azariah, Jeremiah, 3. Pashur, Amariah, Malchijah,…

Nehemiah Chapter 9

Nehemiah Chapter 9 For English Nehemiah 9 Choose a Chapter 12345678910111213 A+ A A- Nehemiah Chapter 9 1. Now in the twenty and fourth day of this month the children of Israel were assembled with fasting, and with sackclothes, and…

Nehemiah Chapter 8

Nehemiah Chapter 8 For English Nehemiah 8 Choose a Chapter 12345678910111213 A+ A A- Nehemiah Chapter 8 1. And all the people gathered themselves together as one man into the street that was before the water gate; and they spake…

{ // verses font size changer function increaseFontSize() { txt = document.getElementById('verseList'); style = window.getComputedStyle(txt).getPropertyValue('font-size'); currentSize = parseFloat(style); txt.style.fontSize = (currentSize + 1.0) + 'px'; } function decreaseFontSize() { txt = document.getElementById('verseList'); style = window.getComputedStyle(txt).getPropertyValue('font-size'); currentSize = parseFloat(style); txt.style.fontSize = (currentSize - 1.0) + 'px'; } function defaultFontSize() { txt = document.getElementById('verseList'); style = window.getComputedStyle(txt).getPropertyValue('font-size'); txt.style.fontSize = (18.0) + 'px'; } const wordSelected = e => { console.log(" wordSelected "); const wordsList = document.getElementById("verseList").querySelectorAll("p"); const chapterList = document.getElementsByTagName('h1'); chapterTrim = chapterList[0].textContent.split('–'); let wordText = e.target.innerText; let verseId = wordText.split(' '); verseId = verseId[0].split('.'); console.log(" verseId "); let currentUrl = window.location.href; const newPath = currentUrl.split("#"); let shareLink = newPath[0] + "#" + verseId[0]; let verse = wordsList[Number(verseId[0]) - 1].textContent; let shareVerse = verse + "\n" + chapterTrim[0] + ": " + verseId[0] + "\n\nRead This Verse " + shareLink; navigator.clipboard.writeText(shareVerse); console.log(" "); const demo = document.getElementById(Number(verseId[0])); let oldVerse = demo.innerHTML; demo.innerHTML = "Verse Copied, Now You Can Share!!
" + oldVerse; console.log(" innerHTML "); let timer = setTimeout(reArrange, 1800); function reArrange() { e.target.style.color = 'black'; demo.innerHTML = oldVerse; } } window.onload = function() { const wordsList = document.getElementById("verseList").querySelectorAll("p"); for (let word of wordsList) { word.addEventListener("dblclick", wordSelected); } redirect(); }; function redirect() { const wordsList = document.getElementById("verseList").querySelectorAll("p"); let currentUrl = window.location.href; const newPath = currentUrl.split("#"); if (newPath.length >= 1) { const demo1 = wordsList[Number(newPath[1]) - 1]; demo1.style.color = "red"; demo1.style.fontWeight = 600; } };