Category English Bible – KJV

1 Chronicles Chapter 21

1 Chronicles Chapter 21 For English 1 Chronicles 21 Choose a Chapter 1234567891011121314151617181920212223242526272829 A+ A A- 1 Chronicles Chapter 21 1. And Satan stood up against Israel, and provoked David to number Israel. 2. And David said to Joab and…

1 Chronicles Chapter 20

1 Chronicles Chapter 20 For English 1 Chronicles 20 Choose a Chapter 1234567891011121314151617181920212223242526272829 A+ A A- 1 Chronicles Chapter 20 1. And it came to pass, that after the year was expired, at the time that kings go out to…

1 Chronicles Chapter 19

1 Chronicles Chapter 19 For English 1 Chronicles 19 Choose a Chapter 1234567891011121314151617181920212223242526272829 A+ A A- 1 Chronicles Chapter 19 1. Now it came to pass after this, that Nahash the king of the children of Ammon died, and his…

1 Chronicles Chapter 18

1 Chronicles Chapter 18 For English 1 Chronicles 18 Choose a Chapter 1234567891011121314151617181920212223242526272829 A+ A A- 1 Chronicles Chapter 18 1. Now after this it came to pass, that David smote the Philistines, and subdued them, and took Gath and…

1 Chronicles Chapter 17

1 Chronicles Chapter 17 For English 1 Chronicles 17 Choose a Chapter 1234567891011121314151617181920212223242526272829 A+ A A- 1 Chronicles Chapter 17 1. Now it came to pass, as David sat in his house, that David said to Nathan the prophet, Lo,…

1 Chronicles Chapter 16

1 Chronicles Chapter 16 For English 1 Chronicles 16 Choose a Chapter 1234567891011121314151617181920212223242526272829 A+ A A- 1 Chronicles Chapter 16 1. So they brought the ark of God, and set it in the midst of the tent that David had…

1 Chronicles Chapter 15

1 Chronicles Chapter 15 For English 1 Chronicles 15 Choose a Chapter 1234567891011121314151617181920212223242526272829 A+ A A- 1 Chronicles Chapter 15 1. And David made him houses in the city of David, and prepared a place for the ark of God,…

1 Chronicles Chapter 14

1 Chronicles Chapter 14 For English 1 Chronicles 14 Choose a Chapter 1234567891011121314151617181920212223242526272829 A+ A A- 1 Chronicles Chapter 14 1. Now Hiram king of Tyre sent messengers to David, and timber of cedars, with masons and carpenters, to build…

1 Chronicles Chapter 13

1 Chronicles Chapter 13 For English 1 Chronicles 13 Choose a Chapter 1234567891011121314151617181920212223242526272829 A+ A A- 1 Chronicles Chapter 13 1. And David consulted with the captains of thousands and hundreds, and with every leader. 2. And David said unto…

1 Chronicles Chapter 12

1 Chronicles Chapter 12 For English 1 Chronicles 12 Choose a Chapter 1234567891011121314151617181920212223242526272829 A+ A A- 1 Chronicles Chapter 12 1. Now these are they that came to David to Ziklag, while he yet kept himself close because of Saul…

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