Category English Bible – KJV

2 Samuel Chapter 22

2 Samuel Chapter 22 For English 2 Samuel 22 Choose a Chapter 123456789101112131415161718192021222324 A+ A A- 2 Samuel Chapter 22 1. And David spake unto the LORD the words of this song in the day that the LORD had delivered…

2 Samuel Chapter 21

2 Samuel Chapter 21 For English 2 Samuel 21 Choose a Chapter 123456789101112131415161718192021222324 A+ A A- 2 Samuel Chapter 21 1. Then there was a famine in the days of David three years, year after year; and David enquired of…

2 Samuel Chapter 20

2 Samuel Chapter 20 For English 2 Samuel 20 Choose a Chapter 123456789101112131415161718192021222324 A+ A A- 2 Samuel Chapter 20 1. And there happened to be there a man of Belial, whose name was Sheba, the son of Bichri, a…

2 Samuel Chapter 19

2 Samuel Chapter 19 For English 2 Samuel 19 Choose a Chapter 123456789101112131415161718192021222324 A+ A A- 2 Samuel Chapter 19 1. And it was told Joab, Behold, the king weepeth and mourneth for Absalom. 2. And the victory that day…

2 Samuel Chapter 18

2 Samuel Chapter 18 For English 2 Samuel 18 Choose a Chapter 123456789101112131415161718192021222324 A+ A A- 2 Samuel Chapter 18 1. And David numbered the people that were with him, and set captains of thousands and captains of hundreds over…

2 Samuel Chapter 17

2 Samuel Chapter 17 For English 2 Samuel 17 Choose a Chapter 123456789101112131415161718192021222324 A+ A A- 2 Samuel Chapter 17 1. Moreover Ahithophel said unto Absalom, Let me now choose out twelve thousand men, and I will arise and pursue…

2 Samuel Chapter 16

2 Samuel Chapter 16 For English 2 Samuel 16 Choose a Chapter 123456789101112131415161718192021222324 A+ A A- 2 Samuel Chapter 16 1. And when David was a little past the top of the hill, behold, Ziba the servant of Mephibosheth met…

2 Samuel Chapter 15

2 Samuel Chapter 15 For English 2 Samuel 15 Choose a Chapter 123456789101112131415161718192021222324 A+ A A- 2 Samuel Chapter 15 1. And it came to pass after this, that Absalom prepared him chariots and horses, and fifty men to run…

2 Samuel Chapter 14

2 Samuel Chapter 14 For English 2 Samuel 14 Choose a Chapter 123456789101112131415161718192021222324 A+ A A- 2 Samuel Chapter 14 1. Now Joab the son of Zeruiah perceived that the king's heart was toward Absalom. 2. And Joab sent to…

2 Samuel Chapter 13

2 Samuel Chapter 13 For English 2 Samuel 13 Choose a Chapter 123456789101112131415161718192021222324 A+ A A- 2 Samuel Chapter 13 1. And it came to pass after this, that Absalom the son of David had a fair sister, whose name…

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