Category English Bible – KJV

Jeremiah Chapter 34

Jeremiah Chapter 34 For English Jeremiah 34 Choose a Chapter 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 A+ A A- Jeremiah Chapter 34 1. The word which came unto Jeremiah from the LORD, when Nebuchadnezzar king of Babylon, and all his army, and all the kingdoms…

Jeremiah Chapter 33

Jeremiah Chapter 33 For English Jeremiah 33 Choose a Chapter 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 A+ A A- Jeremiah Chapter 33 1. Moreover the word of the LORD came unto Jeremiah the second time, while he was yet shut up in the court of…

Jeremiah Chapter 32

Jeremiah Chapter 32 For English Jeremiah 32 Choose a Chapter 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 A+ A A- Jeremiah Chapter 32 1. The word that came to Jeremiah from the LORD in the tenth year of Zedekiah king of Judah, which was the eighteenth…

Jeremiah Chapter 31

Jeremiah Chapter 31 For English Jeremiah 31 Choose a Chapter 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 A+ A A- Jeremiah Chapter 31 1. At the same time, saith the LORD, will I be the God of all the families of Israel, and they shall be…

Jeremiah Chapter 30

Jeremiah Chapter 30 For English Jeremiah 30 Choose a Chapter 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 A+ A A- Jeremiah Chapter 30 1. The word that came to Jeremiah from the LORD, saying, 2. Thus speaketh the LORD God of Israel, saying, Write thee all…

Jeremiah Chapter 29

Jeremiah Chapter 29 For English Jeremiah 29 Choose a Chapter 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 A+ A A- Jeremiah Chapter 29 1. Now these are the words of the letter that Jeremiah the prophet sent from Jerusalem unto the residue of the elders which…

Jeremiah Chapter 28

Jeremiah Chapter 28 For English Jeremiah 28 Choose a Chapter 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 A+ A A- Jeremiah Chapter 28 1. And it came to pass the same year, in the beginning of the reign of Zedekiah king of Judah, in the fourth…

Jeremiah Chapter 27

Jeremiah Chapter 27 For English Jeremiah 27 Choose a Chapter 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 A+ A A- Jeremiah Chapter 27 1. In the beginning of the reign of Jehoiakim the son of Josiah king of Judah came this word unto Jeremiah from the…

Jeremiah Chapter 26

Jeremiah Chapter 26 For English Jeremiah 26 Choose a Chapter 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 A+ A A- Jeremiah Chapter 26 1. In the beginning of the reign of Jehoiakim the son of Josiah king of Judah came this word from the LORD, saying,…

Jeremiah Chapter 25

Jeremiah Chapter 25 For English Jeremiah 25 Choose a Chapter 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 A+ A A- Jeremiah Chapter 25 1. The word that came to Jeremiah concerning all the people of Judah in the fourth year of Jehoiakim the son of Josiah…

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