Category English Bible – KJV

Ezra Chapter 6

Ezra Chapter 6 For English Ezra 6 Choose a Chapter 12345678910 A+ A A- Ezra Chapter 6 1. Then Darius the king made a decree, and search was made in the house of the rolls, where the treasures were laid…

Ezra Chapter 5

Ezra Chapter 5 For English Ezra 5 Choose a Chapter 12345678910 A+ A A- Ezra Chapter 5 1. Then the prophets, Haggai the prophet, and Zechariah the son of Iddo, prophesied unto the Jews that were in Judah and Jerusalem…

Ezra Chapter 4

Ezra Chapter 4 For English Ezra 4 Choose a Chapter 12345678910 A+ A A- Ezra Chapter 4 1. Now when the adversaries of Judah and Benjamin heard that the children of the captivity builded the temple unto the LORD God…

Ezra Chapter 3

Ezra Chapter 3 For English Ezra 3 Choose a Chapter 12345678910 A+ A A- Ezra Chapter 3 1. And when the seventh month was come, and the children of Israel were in the cities, the people gathered themselves together as…

Ezra Chapter 2

Ezra Chapter 2 For English Ezra 2 Choose a Chapter 12345678910 A+ A A- Ezra Chapter 2 1. Now these are the children of the province that went up out of the captivity, of those which had been carried away,…

Ezra Chapter 1

Ezra Chapter 1 For English Ezra 1 Choose a Chapter 12345678910 A+ A A- Ezra Chapter 1 1. Now in the first year of Cyrus king of Persia, that the word of the LORD by the mouth of Jeremiah might…

2 Chronicles Chapter 36

2 Chronicles Chapter 36 For English 2 Chronicles 36 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536 A+ A A- 2 Chronicles Chapter 36 1. Then the people of the land took Jehoahaz the son of Josiah, and made him king in his father's…

2 Chronicles Chapter 35

2 Chronicles Chapter 35 For English 2 Chronicles 35 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536 A+ A A- 2 Chronicles Chapter 35 1. Moreover Josiah kept a passover unto the LORD in Jerusalem: and they killed the passover on the fourteenth day…

2 Chronicles Chapter 34

2 Chronicles Chapter 34 For English 2 Chronicles 34 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536 A+ A A- 2 Chronicles Chapter 34 1. Josiah was eight years old when he began to reign, and he reigned in Jerusalem one and thirty years.…

2 Chronicles Chapter 33

2 Chronicles Chapter 33 For English 2 Chronicles 33 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536 A+ A A- 2 Chronicles Chapter 33 1. Manasseh was twelve years old when he began to reign, and he reigned fifty and five years in Jerusalem:…

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