Category English Bible – KJV

Jeremiah Chapter 24

Jeremiah Chapter 24 For English Jeremiah 24 Choose a Chapter 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 A+ A A- Jeremiah Chapter 24 1. The LORD shewed me, and, behold, two baskets of figs were set before the temple of the LORD, after that Nebuchadrezzar king…

Jeremiah Chapter 23

Jeremiah Chapter 23 For English Jeremiah 23 Choose a Chapter 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 A+ A A- Jeremiah Chapter 23 1. Woe be unto the pastors that destroy and scatter the sheep of my pasture! saith the LORD. 2. Therefore thus saith the…

Jeremiah Chapter 22

Jeremiah Chapter 22 For English Jeremiah 22 Choose a Chapter 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 A+ A A- Jeremiah Chapter 22 1. Thus saith the LORD; Go down to the house of the king of Judah, and speak there this word, 2. And say,…

Jeremiah Chapter 21

Jeremiah Chapter 21 For English Jeremiah 21 Choose a Chapter 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 A+ A A- Jeremiah Chapter 21 1. The word which came unto Jeremiah from the LORD, when king Zedekiah sent unto him Pashur the son of Melchiah, and Zephaniah…

Jeremiah Chapter 20

Jeremiah Chapter 20 For English Jeremiah 20 Choose a Chapter 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 A+ A A- Jeremiah Chapter 20 1. Now Pashur the son of Immer the priest, who was also chief governor in the house of the LORD, heard that Jeremiah…

Jeremiah Chapter 19

Jeremiah Chapter 19 For English Jeremiah 19 Choose a Chapter 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 A+ A A- Jeremiah Chapter 19 1. Thus saith the LORD, Go and get a potter's earthen bottle, and take of the ancients of the people, and of the…

Jeremiah Chapter 18

Jeremiah Chapter 18 For English Jeremiah 18 Choose a Chapter 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 A+ A A- Jeremiah Chapter 18 1. The word which came to Jeremiah from the LORD, saying, 2. Arise, and go down to the potter's house, and there I…

Jeremiah Chapter 17

Jeremiah Chapter 17 For English Jeremiah 17 Choose a Chapter 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 A+ A A- Jeremiah Chapter 17 1. The sin of Judah is written with a pen of iron, and with the point of a diamond: it is graven upon…

Jeremiah Chapter 16

Jeremiah Chapter 16 For English Jeremiah 16 Choose a Chapter 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 A+ A A- Jeremiah Chapter 16 1. The word of the LORD came also unto me, saying, 2. Thou shalt not take thee a wife, neither shalt thou have…

Jeremiah Chapter 15

Jeremiah Chapter 15 For English Jeremiah 15 Choose a Chapter 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 A+ A A- Jeremiah Chapter 15 1. Then said the LORD unto me, Though Moses and Samuel stood before me, yet my mind could not be toward this people:…

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