Category English Bible – KJV

1 Chronicles Chapter 11

1 Chronicles Chapter 11 For English 1 Chronicles 11 Choose a Chapter 1234567891011121314151617181920212223242526272829 A+ A A- 1 Chronicles Chapter 11 1. Then all Israel gathered themselves to David unto Hebron, saying, Behold, we are thy bone and thy flesh. 2.…

1 Chronicles Chapter 10

1 Chronicles Chapter 10 For English 1 Chronicles 10 Choose a Chapter 1234567891011121314151617181920212223242526272829 A+ A A- 1 Chronicles Chapter 10 1. Now the Philistines fought against Israel; and the men of Israel fled from before the Philistines, and fell down…

1 Chronicles Chapter 9

1 Chronicles Chapter 9 For English 1 Chronicles 9 Choose a Chapter 1234567891011121314151617181920212223242526272829 A+ A A- 1 Chronicles Chapter 9 1. So all Israel were reckoned by genealogies; and, behold, they were written in the book of the kings of…

1 Chronicles Chapter 8

1 Chronicles Chapter 8 For English 1 Chronicles 8 Choose a Chapter 1234567891011121314151617181920212223242526272829 A+ A A- 1 Chronicles Chapter 8 1. Now Benjamin begat Bela his firstborn, Ashbel the second, and Aharah the third, 2. Nohah the fourth, and Rapha…

1 Chronicles Chapter 7

1 Chronicles Chapter 7 For English 1 Chronicles 7 Choose a Chapter 1234567891011121314151617181920212223242526272829 A+ A A- 1 Chronicles Chapter 7 1. Now the sons of Issachar were, Tola, and Puah, Jashub, and Shimron, four. 2. And the sons of Tola;…

1 Chronicles Chapter 6

1 Chronicles Chapter 6 For English 1 Chronicles 6 Choose a Chapter 1234567891011121314151617181920212223242526272829 A+ A A- 1 Chronicles Chapter 6 1. The sons of Levi; Gershon, Kohath, and Merari. 2. And the sons of Kohath; Amram, Izhar, and Hebron, and…

1 Chronicles Chapter 5

1 Chronicles Chapter 5 For English 1 Chronicles 5 Choose a Chapter 1234567891011121314151617181920212223242526272829 A+ A A- 1 Chronicles Chapter 5 1. Now the sons of Reuben the firstborn of Israel, (for he was the firstborn; but, forasmuch as he defiled…

1 Chronicles Chapter 4

1 Chronicles Chapter 4 For English 1 Chronicles 4 Choose a Chapter 1234567891011121314151617181920212223242526272829 A+ A A- 1 Chronicles Chapter 4 1. The sons of Judah; Pharez, Hezron, and Carmi, and Hur, and Shobal. 2. And Reaiah the son of Shobal…

1 Chronicles Chapter 3

1 Chronicles Chapter 3 For English 1 Chronicles 3 Choose a Chapter 1234567891011121314151617181920212223242526272829 A+ A A- 1 Chronicles Chapter 3 1. Now these were the sons of David, which were born unto him in Hebron; the firstborn Amnon, of Ahinoam…

1 Chronicles Chapter 2

1 Chronicles Chapter 2 For English 1 Chronicles 2 Choose a Chapter 1234567891011121314151617181920212223242526272829 A+ A A- 1 Chronicles Chapter 2 1. These are the sons of Israel; Reuben, Simeon, Levi, and Judah, Issachar, and Zebulun, 2. Dan, Joseph, and Benjamin,…

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