Category English Bible – KJV

Nehemiah Chapter 6

Nehemiah Chapter 6 For English Nehemiah 6 Choose a Chapter 12345678910111213 A+ A A- Nehemiah Chapter 6 1. Now it came to pass, when Sanballat, and Tobiah, and Geshem the Arabian, and the rest of our enemies, heard that I…

Nehemiah Chapter 5

Nehemiah Chapter 5 For English Nehemiah 5 Choose a Chapter 12345678910111213 A+ A A- Nehemiah Chapter 5 1. And there was a great cry of the people and of their wives against their brethren the Jews. 2. For there were…

Nehemiah Chapter 4

Nehemiah Chapter 4 For English Nehemiah 4 Choose a Chapter 12345678910111213 A+ A A- Nehemiah Chapter 4 1. But it came to pass, that when Sanballat heard that we builded the wall, he was wroth, and took great indignation, and…

Nehemiah Chapter 3

Nehemiah Chapter 3 For English Nehemiah 3 Choose a Chapter 12345678910111213 A+ A A- Nehemiah Chapter 3 1. Then Eliashib the high priest rose up with his brethren the priests, and they builded the sheep gate; they sanctified it, and…

Nehemiah Chapter 2

Nehemiah Chapter 2 For English Nehemiah 2 Choose a Chapter 12345678910111213 A+ A A- Nehemiah Chapter 2 1. And it came to pass in the month Nisan, in the twentieth year of Artaxerxes the king, that wine was before him:…

Nehemiah Chapter 1

Nehemiah Chapter 1 For English Nehemiah 1 Choose a Chapter 12345678910111213 A+ A A- Nehemiah Chapter 1 1. The words of Nehemiah the son of Hachaliah. And it came to pass in the month Chisleu, in the twentieth year, as…

Ezra Chapter 10

Ezra Chapter 10 For English Ezra 10 Choose a Chapter 12345678910 A+ A A- Ezra Chapter 10 1. Now when Ezra had prayed, and when he had confessed, weeping and casting himself down before the house of God, there assembled…

Ezra Chapter 9

Ezra Chapter 9 For English Ezra 9 Choose a Chapter 12345678910 A+ A A- Ezra Chapter 9 1. Now when these things were done, the princes came to me, saying, The people of Israel, and the priests, and the Levites,…

Ezra Chapter 8

Ezra Chapter 8 For English Ezra 8 Choose a Chapter 12345678910 A+ A A- Ezra Chapter 8 1. These are now the chief of their fathers, and this is the genealogy of them that went up with me from Babylon,…

Ezra Chapter 7

Ezra Chapter 7 For English Ezra 7 Choose a Chapter 12345678910 A+ A A- Ezra Chapter 7 1. Now after these things, in the reign of Artaxerxes king of Persia, Ezra the son of Seraiah, the son of Azariah, the…

{ // 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; } };