Category English Bible – KJV

1 Kings Chapter 18

1 Kings Chapter 18 For English 1 Kings 18 Choose a Chapter 12345678910111213141516171819202122 A+ A A- 1 Kings Chapter 18 1. And it came to pass after many days, that the word of the LORD came to Elijah in the…

1 Kings Chapter 17

1 Kings Chapter 17 For English 1 Kings 17 Choose a Chapter 12345678910111213141516171819202122 A+ A A- 1 Kings Chapter 17 1. And Elijah the Tishbite, who was of the inhabitants of Gilead, said unto Ahab, As the LORD God of…

1 Kings Chapter 16

1 Kings Chapter 16 For English 1 Kings 16 Choose a Chapter 12345678910111213141516171819202122 A+ A A- 1 Kings Chapter 16 1. Then the word of the LORD came to Jehu the son of Hanani against Baasha, saying, 2. Forasmuch as…

1 Kings Chapter 15

1 Kings Chapter 15 For English 1 Kings 15 Choose a Chapter 12345678910111213141516171819202122 A+ A A- 1 Kings Chapter 15 1. Now in the eighteenth year of king Jeroboam the son of Nebat reigned Abijam over Judah. 2. Three years…

1 Kings Chapter 14

1 Kings Chapter 14 For English 1 Kings 14 Choose a Chapter 12345678910111213141516171819202122 A+ A A- 1 Kings Chapter 14 1. At that time Abijah the son of Jeroboam fell sick. 2. And Jeroboam said to his wife, Arise, I…

1 Kings Chapter 13

1 Kings Chapter 13 For English 1 Kings 13 Choose a Chapter 12345678910111213141516171819202122 A+ A A- 1 Kings Chapter 13 1. And, behold, there came a man of God out of Judah by the word of the LORD unto Bethel:…

1 Kings Chapter 12

1 Kings Chapter 12 For English 1 Kings 12 Choose a Chapter 12345678910111213141516171819202122 A+ A A- 1 Kings Chapter 12 1. And Rehoboam went to Shechem: for all Israel were come to Shechem to make him king. 2. And it…

1 Kings Chapter 11

1 Kings Chapter 11 For English 1 Kings 11 Choose a Chapter 12345678910111213141516171819202122 A+ A A- 1 Kings Chapter 11 1. But king Solomon loved many strange women, together with the daughter of Pharaoh, women of the Moabites, Ammonites, Edomites,…

1 Kings Chapter 10

1 Kings Chapter 10 For English 1 Kings 10 Choose a Chapter 12345678910111213141516171819202122 A+ A A- 1 Kings Chapter 10 1. And when the queen of Sheba heard of the fame of Solomon concerning the name of the LORD, she…

1 Kings Chapter 9

1 Kings Chapter 9 For English 1 Kings 9 Choose a Chapter 12345678910111213141516171819202122 A+ A A- 1 Kings Chapter 9 1. And it came to pass, when Solomon had finished the building of the house of the LORD, and the…

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