Category English Bible – KJV

1 Chronicles Chapter 1

1 Chronicles Chapter 1 For English 1 Chronicles 1 Choose a Chapter 1234567891011121314151617181920212223242526272829 A+ A A- 1 Chronicles Chapter 1 1. Adam, Sheth, Enosh, 2. Kenan, Mahalaleel, Jered, 3. Henoch, Methuselah, Lamech, 4. Noah, Shem, Ham, and Japheth. 5. The…

2 Kings Chapter 25

2 Kings Chapter 25 For English 2 Kings 25 Choose a Chapter 12345678910111213141516171819202122232425 A+ A A- 2 Kings Chapter 25 1. And it came to pass in the ninth year of his reign, in the tenth month, in the tenth…

2 Kings Chapter 24

2 Kings Chapter 24 For English 2 Kings 24 Choose a Chapter 12345678910111213141516171819202122232425 A+ A A- 2 Kings Chapter 24 1. In his days Nebuchadnezzar king of Babylon came up, and Jehoiakim became his servant three years: then he turned…

2 Kings Chapter 23

2 Kings Chapter 23 For English 2 Kings 23 Choose a Chapter 12345678910111213141516171819202122232425 A+ A A- 2 Kings Chapter 23 1. And the king sent, and they gathered unto him all the elders of Judah and of Jerusalem. 2. And…

2 Kings Chapter 22

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

2 Kings Chapter 21

2 Kings Chapter 21 For English 2 Kings 21 Choose a Chapter 12345678910111213141516171819202122232425 A+ A A- 2 Kings Chapter 21 1. Manasseh was twelve years old when he began to reign, and reigned fifty and five years in Jerusalem. And…

2 Kings Chapter 20

2 Kings Chapter 20 For English 2 Kings 20 Choose a Chapter 12345678910111213141516171819202122232425 A+ A A- 2 Kings Chapter 20 1. In those days was Hezekiah sick unto death. And the prophet Isaiah the son of Amoz came to him,…

2 Kings Chapter 19

2 Kings Chapter 19 For English 2 Kings 19 Choose a Chapter 12345678910111213141516171819202122232425 A+ A A- 2 Kings Chapter 19 1. And it came to pass, when king Hezekiah heard it, that he rent his clothes, and covered himself with…

2 Kings Chapter 18

2 Kings Chapter 18 For English 2 Kings 18 Choose a Chapter 12345678910111213141516171819202122232425 A+ A A- 2 Kings Chapter 18 1. Now it came to pass in the third year of Hoshea son of Elah king of Israel, that Hezekiah…

2 Kings Chapter 17

2 Kings Chapter 17 For English 2 Kings 17 Choose a Chapter 12345678910111213141516171819202122232425 A+ A A- 2 Kings Chapter 17 1. In the twelfth year of Ahaz king of Judah began Hoshea the son of Elah to reign in Samaria…

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