Category English Bible – KJV

2 Chronicles Chapter 32

2 Chronicles Chapter 32 For English 2 Chronicles 32 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536 A+ A A- 2 Chronicles Chapter 32 1. After these things, and the establishment thereof, Sennacherib king of Assyria came, and entered into Judah, and encamped against…

2 Chronicles Chapter 31

2 Chronicles Chapter 31 For English 2 Chronicles 31 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536 A+ A A- 2 Chronicles Chapter 31 1. Now when all this was finished, all Israel that were present went out to the cities of Judah, and…

2 Chronicles Chapter 30

2 Chronicles Chapter 30 For English 2 Chronicles 30 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536 A+ A A- 2 Chronicles Chapter 30 1. And Hezekiah sent to all Israel and Judah, and wrote letters also to Ephraim and Manasseh, that they should…

2 Chronicles Chapter 29

2 Chronicles Chapter 29 For English 2 Chronicles 29 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536 A+ A A- 2 Chronicles Chapter 29 1. Hezekiah began to reign when he was five and twenty years old, and he reigned nine and twenty years…

2 Chronicles Chapter 28

2 Chronicles Chapter 28 For English 2 Chronicles 28 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536 A+ A A- 2 Chronicles Chapter 28 1. Ahaz was twenty years old when he began to reign, and he reigned sixteen years in Jerusalem: but he…

2 Chronicles Chapter 27

2 Chronicles Chapter 27 For English 2 Chronicles 27 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536 A+ A A- 2 Chronicles Chapter 27 1. Jotham was twenty and five years old when he began to reign, and he reigned sixteen years in Jerusalem.…

2 Chronicles Chapter 26

2 Chronicles Chapter 26 For English 2 Chronicles 26 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536 A+ A A- 2 Chronicles Chapter 26 1. Then all the people of Judah took Uzziah, who was sixteen years old, and made him king in the…

2 Chronicles Chapter 25

2 Chronicles Chapter 25 For English 2 Chronicles 25 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536 A+ A A- 2 Chronicles Chapter 25 1. Amaziah was twenty and five years old when he began to reign, and he reigned twenty and nine years…

2 Chronicles Chapter 24

2 Chronicles Chapter 24 For English 2 Chronicles 24 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536 A+ A A- 2 Chronicles Chapter 24 1. Joash was seven years old when he began to reign, and he reigned forty years in Jerusalem. His mother's…

2 Chronicles Chapter 23

2 Chronicles Chapter 23 For English 2 Chronicles 23 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536 A+ A A- 2 Chronicles Chapter 23 1. And in the seventh year Jehoiada strengthened himself, and took the captains of hundreds, Azariah the son of Jeroham,…

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