Category English Bible – KJV

2 Kings Chapter 16

2 Kings Chapter 16 For English 2 Kings 16 Choose a Chapter 12345678910111213141516171819202122232425 A+ A A- 2 Kings Chapter 16 1. In the seventeenth year of Pekah the son of Remaliah Ahaz the son of Jotham king of Judah began…

2 Kings Chapter 15

2 Kings Chapter 15 For English 2 Kings 15 Choose a Chapter 12345678910111213141516171819202122232425 A+ A A- 2 Kings Chapter 15 1. In the twenty and seventh year of Jeroboam king of Israel began Azariah son of Amaziah king of Judah…

2 Kings Chapter 14

2 Kings Chapter 14 For English 2 Kings 14 Choose a Chapter 12345678910111213141516171819202122232425 A+ A A- 2 Kings Chapter 14 1. In the second year of Joash son of Jehoahaz king of Israel reigned Amaziah the son of Joash king…

2 Kings Chapter 13

2 Kings Chapter 13 For English 2 Kings 13 Choose a Chapter 12345678910111213141516171819202122232425 A+ A A- 2 Kings Chapter 13 1. In the three and twentieth year of Joash the son of Ahaziah king of Judah Jehoahaz the son of…

2 Kings Chapter 12

2 Kings Chapter 12 For English 2 Kings 12 Choose a Chapter 12345678910111213141516171819202122232425 A+ A A- 2 Kings Chapter 12 1. In the seventh year of Jehu Jehoash began to reign; and forty years reigned he in Jerusalem. And his…

2 Kings Chapter 11

2 Kings Chapter 11 For English 2 Kings 11 Choose a Chapter 12345678910111213141516171819202122232425 A+ A A- 2 Kings Chapter 11 1. And when Athaliah the mother of Ahaziah saw that her son was dead, she arose and destroyed all the…

2 Kings Chapter 10

2 Kings Chapter 10 For English 2 Kings 10 Choose a Chapter 12345678910111213141516171819202122232425 A+ A A- 2 Kings Chapter 10 1. And Ahab had seventy sons in Samaria. And Jehu wrote letters, and sent to Samaria, unto the rulers of…

2 Kings Chapter 9

2 Kings Chapter 9 For English 2 Kings 9 Choose a Chapter 12345678910111213141516171819202122232425 A+ A A- 2 Kings Chapter 9 1. And Elisha the prophet called one of the children of the prophets, and said unto him, Gird up thy…

2 Kings Chapter 8

2 Kings Chapter 8 For English 2 Kings 8 Choose a Chapter 12345678910111213141516171819202122232425 A+ A A- 2 Kings Chapter 8 1. Then spake Elisha unto the woman, whose son he had restored to life, saying, Arise, and go thou and…

2 Kings Chapter 7

2 Kings Chapter 7 For English 2 Kings 7 Choose a Chapter 12345678910111213141516171819202122232425 A+ A A- 2 Kings Chapter 7 1. Then Elisha said, Hear ye the word of the LORD; Thus saith the LORD, To morrow about this time…

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