Category English Bible – KJV

2 Chronicles Chapter 22

2 Chronicles Chapter 22 For English 2 Chronicles 22 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536 A+ A A- 2 Chronicles Chapter 22 1. And the inhabitants of Jerusalem made Ahaziah his youngest son king in his stead: for the band of men…

2 Chronicles Chapter 21

2 Chronicles Chapter 21 For English 2 Chronicles 21 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536 A+ A A- 2 Chronicles Chapter 21 1. Now Jehoshaphat slept with his fathers, and was buried with his fathers in the city of David. And Jehoram…

2 Chronicles Chapter 20

2 Chronicles Chapter 20 For English 2 Chronicles 20 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536 A+ A A- 2 Chronicles Chapter 20 1. It came to pass after this also, that the children of Moab, and the children of Ammon, and with…

2 Chronicles Chapter 19

2 Chronicles Chapter 19 For English 2 Chronicles 19 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536 A+ A A- 2 Chronicles Chapter 19 1. And Jehoshaphat the king of Judah returned to his house in peace to Jerusalem. 2. And Jehu the son…

2 Chronicles Chapter 18

2 Chronicles Chapter 18 For English 2 Chronicles 18 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536 A+ A A- 2 Chronicles Chapter 18 1. Now Jehoshaphat had riches and honour in abundance, and joined affinity with Ahab. 2. And after certain years he…

2 Chronicles Chapter 17

2 Chronicles Chapter 17 For English 2 Chronicles 17 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536 A+ A A- 2 Chronicles Chapter 17 1. And Jehoshaphat his son reigned in his stead, and strengthened himself against Israel. 2. And he placed forces in…

2 Chronicles Chapter 16

2 Chronicles Chapter 16 For English 2 Chronicles 16 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536 A+ A A- 2 Chronicles Chapter 16 1. In the six and thirtieth year of the reign of Asa Baasha king of Israel came up against Judah,…

2 Chronicles Chapter 15

2 Chronicles Chapter 15 For English 2 Chronicles 15 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536 A+ A A- 2 Chronicles Chapter 15 1. And the Spirit of God came upon Azariah the son of Oded: 2. And he went out to meet…

2 Chronicles Chapter 14

2 Chronicles Chapter 14 For English 2 Chronicles 14 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536 A+ A A- 2 Chronicles Chapter 14 1. So Abijah slept with his fathers, and they buried him in the city of David: and Asa his son…

2 Chronicles Chapter 13

2 Chronicles Chapter 13 For English 2 Chronicles 13 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536 A+ A A- 2 Chronicles Chapter 13 1. Now in the eighteenth year of king Jeroboam began Abijah to reign over Judah. 2. He reigned three years…

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