Category English Bible – KJV

2 Chronicles Chapter 12

2 Chronicles Chapter 12 For English 2 Chronicles 12 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536 A+ A A- 2 Chronicles Chapter 12 1. And it came to pass, when Rehoboam had established the kingdom, and had strengthened himself, he forsook the law…

2 Chronicles Chapter 11

2 Chronicles Chapter 11 For English 2 Chronicles 11 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536 A+ A A- 2 Chronicles Chapter 11 1. And when Rehoboam was come to Jerusalem, he gathered of the house of Judah and Benjamin an hundred and…

2 Chronicles Chapter 10

2 Chronicles Chapter 10 For English 2 Chronicles 10 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536 A+ A A- 2 Chronicles Chapter 10 1. And Rehoboam went to Shechem: for to Shechem were all Israel come to make him king. 2. And it…

2 Chronicles Chapter 9

2 Chronicles Chapter 9 For English 2 Chronicles 9 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536 A+ A A- 2 Chronicles Chapter 9 1. And when the queen of Sheba heard of the fame of Solomon, she came to prove Solomon with hard…

2 Chronicles Chapter 8

2 Chronicles Chapter 8 For English 2 Chronicles 8 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536 A+ A A- 2 Chronicles Chapter 8 1. And it came to pass at the end of twenty years, wherein Solomon had built the house of the…

2 Chronicles Chapter 7

2 Chronicles Chapter 7 For English 2 Chronicles 7 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536 A+ A A- 2 Chronicles Chapter 7 1. Now when Solomon had made an end of praying, the fire came down from heaven, and consumed the burnt…

2 Chronicles Chapter 6

2 Chronicles Chapter 6 For English 2 Chronicles 6 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536 A+ A A- 2 Chronicles Chapter 6 1. Then said Solomon, The LORD hath said that he would dwell in the thick darkness. 2. But I have…

2 Chronicles Chapter 5

2 Chronicles Chapter 5 For English 2 Chronicles 5 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536 A+ A A- 2 Chronicles Chapter 5 1. Thus all the work that Solomon made for the house of the LORD was finished: and Solomon brought in…

2 Chronicles Chapter 4

2 Chronicles Chapter 4 For English 2 Chronicles 4 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536 A+ A A- 2 Chronicles Chapter 4 1. Moreover he made an altar of brass, twenty cubits the length thereof, and twenty cubits the breadth thereof, and…

2 Chronicles Chapter 3

2 Chronicles Chapter 3 For English 2 Chronicles 3 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536 A+ A A- 2 Chronicles Chapter 3 1. Then Solomon began to build the house of the LORD at Jerusalem in mount Moriah, where the Lord appeared…

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