Category English Bible – KJV

2 Kings Chapter 6

2 Kings Chapter 6 For English 2 Kings 6 Choose a Chapter 12345678910111213141516171819202122232425 A+ A A- 2 Kings Chapter 6 1. And the sons of the prophets said unto Elisha, Behold now, the place where we dwell with thee is…

2 Kings Chapter 5

2 Kings Chapter 5 For English 2 Kings 5 Choose a Chapter 12345678910111213141516171819202122232425 A+ A A- 2 Kings Chapter 5 1. Now Naaman, captain of the host of the king of Syria, was a great man with his master, and…

2 Kings Chapter 4

2 Kings Chapter 4 For English 2 Kings 4 Choose a Chapter 12345678910111213141516171819202122232425 A+ A A- 2 Kings Chapter 4 1. Now there cried a certain woman of the wives of the sons of the prophets unto Elisha, saying, Thy…

2 Kings Chapter 3

2 Kings Chapter 3 For English 2 Kings 3 Choose a Chapter 12345678910111213141516171819202122232425 A+ A A- 2 Kings Chapter 3 1. Now Jehoram the son of Ahab began to reign over Israel in Samaria the eighteenth year of Jehoshaphat king…

2 Kings Chapter 2

2 Kings Chapter 2 For English 2 Kings 2 Choose a Chapter 12345678910111213141516171819202122232425 A+ A A- 2 Kings Chapter 2 1. And it came to pass, when the LORD would take up Elijah into heaven by a whirlwind, that Elijah…

2 Kings Chapter 1

2 Kings Chapter 1 For English 2 Kings 1 Choose a Chapter 12345678910111213141516171819202122232425 A+ A A- 2 Kings Chapter 1 1. Then Moab rebelled against Israel after the death of Ahab. 2. And Ahaziah fell down through a lattice in…

1 Kings Chapter 22

1 Kings Chapter 22 For English 1 Kings 22 Choose a Chapter 12345678910111213141516171819202122 A+ A A- 1 Kings Chapter 22 1. And they continued three years without war between Syria and Israel. 2. And it came to pass in the…

1 Kings Chapter 21

1 Kings Chapter 21 For English 1 Kings 21 Choose a Chapter 12345678910111213141516171819202122 A+ A A- 1 Kings Chapter 21 1. And it came to pass after these things, that Naboth the Jezreelite had a vineyard, which was in Jezreel,…

1 Kings Chapter 20

1 Kings Chapter 20 For English 1 Kings 20 Choose a Chapter 12345678910111213141516171819202122 A+ A A- 1 Kings Chapter 20 1. And Benhadad the king of Syria gathered all his host together: and there were thirty and two kings with…

1 Kings Chapter 19

1 Kings Chapter 19 For English 1 Kings 19 Choose a Chapter 12345678910111213141516171819202122 A+ A A- 1 Kings Chapter 19 1. And Ahab told Jezebel all that Elijah had done, and withal how he had slain all the prophets with…

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