Category English Bible – KJV

2 Chronicles Chapter 2

2 Chronicles Chapter 2 For English 2 Chronicles 2 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536 A+ A A- 2 Chronicles Chapter 2 1. And Solomon determined to build an house for the name of the LORD, and an house for his kingdom.…

2 Chronicles Chapter 1

2 Chronicles Chapter 1 For English 2 Chronicles 1 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536 A+ A A- 2 Chronicles Chapter 1 1. And Solomon the son of David was strengthened in his kingdom, and the LORD his God was with him,…

1 Chronicles Chapter 29

1 Chronicles Chapter 29 For English 1 Chronicles 29 Choose a Chapter 1234567891011121314151617181920212223242526272829 A+ A A- 1 Chronicles Chapter 29 1. Furthermore David the king said unto all the congregation, Solomon my son, whom alone God hath chosen, is yet…

1 Chronicles Chapter 28

1 Chronicles Chapter 28 For English 1 Chronicles 28 Choose a Chapter 1234567891011121314151617181920212223242526272829 A+ A A- 1 Chronicles Chapter 28 1. And David assembled all the princes of Israel, the princes of the tribes, and the captains of the companies…

1 Chronicles Chapter 27

1 Chronicles Chapter 27 For English 1 Chronicles 27 Choose a Chapter 1234567891011121314151617181920212223242526272829 A+ A A- 1 Chronicles Chapter 27 1. Now the children of Israel after their number, to wit, the chief fathers and captains of thousands and hundreds,…

1 Chronicles Chapter 26

1 Chronicles Chapter 26 For English 1 Chronicles 26 Choose a Chapter 1234567891011121314151617181920212223242526272829 A+ A A- 1 Chronicles Chapter 26 1. Concerning the divisions of the porters: Of the Korhites was Meshelemiah the son of Kore, of the sons of…

1 Chronicles Chapter 25

1 Chronicles Chapter 25 For English 1 Chronicles 25 Choose a Chapter 1234567891011121314151617181920212223242526272829 A+ A A- 1 Chronicles Chapter 25 1. Moreover David and the captains of the host separated to the service of the sons of Asaph, and of…

1 Chronicles Chapter 24

1 Chronicles Chapter 24 For English 1 Chronicles 24 Choose a Chapter 1234567891011121314151617181920212223242526272829 A+ A A- 1 Chronicles Chapter 24 1. Now these are the divisions of the sons of Aaron. The sons of Aaron; Nadab, and Abihu, Eleazar, and…

1 Chronicles Chapter 23

1 Chronicles Chapter 23 For English 1 Chronicles 23 Choose a Chapter 1234567891011121314151617181920212223242526272829 A+ A A- 1 Chronicles Chapter 23 1. So when David was old and full of days, he made Solomon his son king over Israel. 2. And…

1 Chronicles Chapter 22

1 Chronicles Chapter 22 For English 1 Chronicles 22 Choose a Chapter 1234567891011121314151617181920212223242526272829 A+ A A- 1 Chronicles Chapter 22 1. Then David said, This is the house of the LORD God, and this is the altar of the burnt…

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