Category English Bible – KJV

1 Kings Chapter 8

1 Kings Chapter 8 For English 1 Kings 8 Choose a Chapter 12345678910111213141516171819202122 A+ A A- 1 Kings Chapter 8 1. Then Solomon assembled the elders of Israel, and all the heads of the tribes, the chief of the fathers…

1 Kings Chapter 7

1 Kings Chapter 7 For English 1 Kings 7 Choose a Chapter 12345678910111213141516171819202122 A+ A A- 1 Kings Chapter 7 1. But Solomon was building his own house thirteen years, and he finished all his house. 2. He built also…

1 Kings Chapter 6

1 Kings Chapter 6 For English 1 Kings 6 Choose a Chapter 12345678910111213141516171819202122 A+ A A- 1 Kings Chapter 6 1. And it came to pass in the four hundred and eightieth year after the children of Israel were come…

1 Kings Chapter 5

1 Kings Chapter 5 For English 1 Kings 5 Choose a Chapter 12345678910111213141516171819202122 A+ A A- 1 Kings Chapter 5 1. And Hiram king of Tyre sent his servants unto Solomon; for he had heard that they had anointed him…

1 Kings Chapter 4

1 Kings Chapter 4 For English 1 Kings 4 Choose a Chapter 12345678910111213141516171819202122 A+ A A- 1 Kings Chapter 4 1. So king Solomon was king over all Israel. 2. And these were the princes which he had; Azariah the…

1 Kings Chapter 3

1 Kings Chapter 3 For English 1 Kings 3 Choose a Chapter 12345678910111213141516171819202122 A+ A A- 1 Kings Chapter 3 1. And Solomon made affinity with Pharaoh king of Egypt, and took Pharaoh's daughter, and brought her into the city…

1 Kings Chapter 2

1 Kings Chapter 2 For English 1 Kings 2 Choose a Chapter 12345678910111213141516171819202122 A+ A A- 1 Kings Chapter 2 1. Now the days of David drew nigh that he should die; and he charged Solomon his son, saying, 2.…

1 Kings Chapter 1

1 Kings Chapter 1 For English 1 Kings 1 Choose a Chapter 12345678910111213141516171819202122 A+ A A- 1 Kings Chapter 1 1. Now king David was old and stricken in years; and they covered him with clothes, but he gat no…

2 Samuel Chapter 24

2 Samuel Chapter 24 For English 2 Samuel 24 Choose a Chapter 123456789101112131415161718192021222324 A+ A A- 2 Samuel Chapter 24 1. And again the anger of the LORD was kindled against Israel, and he moved David against them to say,…

2 Samuel Chapter 23

2 Samuel Chapter 23 For English 2 Samuel 23 Choose a Chapter 123456789101112131415161718192021222324 A+ A A- 2 Samuel Chapter 23 1. Now these be the last words of David. David the son of Jesse said, and the man who was…

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