Category English Bible – KJV

Jeremiah Chapter 52

Jeremiah Chapter 52 For English Jeremiah 52 Choose a Chapter 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 A+ A A- Jeremiah Chapter 52 1. Zedekiah was one and twenty years old when he began to reign, and he reigned eleven years in Jerusalem. And his mother's…

Jeremiah Chapter 51

Jeremiah Chapter 51 For English Jeremiah 51 Choose a Chapter 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 A+ A A- Jeremiah Chapter 51 1. Thus saith the LORD; Behold, I will raise up against Babylon, and against them that dwell in the midst of them that…

Jeremiah Chapter 50

Jeremiah Chapter 50 For English Jeremiah 50 Choose a Chapter 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 A+ A A- Jeremiah Chapter 50 1. The word that the LORD spake against Babylon and against the land of the Chaldeans by Jeremiah the prophet. 2. Declare ye…

Jeremiah Chapter 49

Jeremiah Chapter 49 For English Jeremiah 49 Choose a Chapter 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 A+ A A- Jeremiah Chapter 49 1. Concerning the Ammonites, thus saith the LORD; Hath Israel no sons? hath he no heir? why then doth their king inherit Gad,…

Jeremiah Chapter 48

Jeremiah Chapter 48 For English Jeremiah 48 Choose a Chapter 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 A+ A A- Jeremiah Chapter 48 1. Against Moab thus saith the LORD of hosts, the God of Israel; Woe unto Nebo! for it is spoiled: Kiriathaim is confounded…

Jeremiah Chapter 47

Jeremiah Chapter 47 For English Jeremiah 47 Choose a Chapter 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 A+ A A- Jeremiah Chapter 47 1. The word of the LORD that came to Jeremiah the prophet against the Philistines, before that Pharaoh smote Gaza. 2. Thus saith…

Jeremiah Chapter 46

Jeremiah Chapter 46 For English Jeremiah 46 Choose a Chapter 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 A+ A A- Jeremiah Chapter 46 1. The word of the LORD which came to Jeremiah the prophet against the Gentiles; 2. Against Egypt, against the army of Pharaohnecho…

Jeremiah Chapter 45

Jeremiah Chapter 45 For English Jeremiah 45 Choose a Chapter 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 A+ A A- Jeremiah Chapter 45 1. The word that Jeremiah the prophet spake unto Baruch the son of Neriah, when he had written these words in a book…

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