Category English Bible – KJV

Jeremiah Chapter 14

Jeremiah Chapter 14 For English Jeremiah 14 Choose a Chapter 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 A+ A A- Jeremiah Chapter 14 1. The word of the LORD that came to Jeremiah concerning the dearth. 2. Judah mourneth, and the gates thereof languish; they are…

Jeremiah Chapter 13

Jeremiah Chapter 13 For English Jeremiah 13 Choose a Chapter 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 A+ A A- Jeremiah Chapter 13 1. Thus saith the LORD unto me, Go and get thee a linen girdle, and put it upon thy loins, and put it…

Jeremiah Chapter 12

Jeremiah Chapter 12 For English Jeremiah 12 Choose a Chapter 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 A+ A A- Jeremiah Chapter 12 1. Righteous art thou, O LORD, when I plead with thee: yet let me talk with thee of thy judgments: Wherefore doth the…

Jeremiah Chapter 11

Jeremiah Chapter 11 For English Jeremiah 11 Choose a Chapter 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 A+ A A- Jeremiah Chapter 11 1. The word that came to Jeremiah from the LORD, saying, 2. Hear ye the words of this covenant, and speak unto the…

Jeremiah Chapter 10

Jeremiah Chapter 10 For English Jeremiah 10 Choose a Chapter 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 A+ A A- Jeremiah Chapter 10 1. Hear ye the word which the LORD speaketh unto you, O house of Israel: 2. Thus saith the LORD, Learn not the…

Jeremiah Chapter 9

Jeremiah Chapter 9 For English Jeremiah 9 Choose a Chapter 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 A+ A A- Jeremiah Chapter 9 1. Oh that my head were waters, and mine eyes a fountain of tears, that I might weep day and night for the…

Jeremiah Chapter 8

Jeremiah Chapter 8 For English Jeremiah 8 Choose a Chapter 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 A+ A A- Jeremiah Chapter 8 1. At that time, saith the LORD, they shall bring out the bones of the kings of Judah, and the bones of his…

Jeremiah Chapter 7

Jeremiah Chapter 7 For English Jeremiah 7 Choose a Chapter 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 A+ A A- Jeremiah Chapter 7 1. The word that came to Jeremiah from the LORD, saying, 2. Stand in the gate of the LORD's house, and proclaim there…

Jeremiah Chapter 6

Jeremiah Chapter 6 For English Jeremiah 6 Choose a Chapter 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 A+ A A- Jeremiah Chapter 6 1. O ye children of Benjamin, gather yourselves to flee out of the midst of Jerusalem, and blow the trumpet in Tekoa, and…

Jeremiah Chapter 5

Jeremiah Chapter 5 For English Jeremiah 5 Choose a Chapter 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 A+ A A- Jeremiah Chapter 5 1. Run ye to and fro through the streets of Jerusalem, and see now, and know, and seek in the broad places thereof,…

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