Category English Bible – KJV

Jeremiah Chapter 44

Jeremiah Chapter 44 For English Jeremiah 44 Choose a Chapter 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 A+ A A- Jeremiah Chapter 44 1. The word that came to Jeremiah concerning all the Jews which dwell in the land of Egypt, which dwell at Migdol, and…

Jeremiah Chapter 43

Jeremiah Chapter 43 For English Jeremiah 43 Choose a Chapter 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 A+ A A- Jeremiah Chapter 43 1. And it came to pass, that when Jeremiah had made an end of speaking unto all the people all the words of…

Jeremiah Chapter 42

Jeremiah Chapter 42 For English Jeremiah 42 Choose a Chapter 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 A+ A A- Jeremiah Chapter 42 1. Then all the captains of the forces, and Johanan the son of Kareah, and Jezaniah the son of Hoshaiah, and all the…

Jeremiah Chapter 41

Jeremiah Chapter 41 For English Jeremiah 41 Choose a Chapter 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 A+ A A- Jeremiah Chapter 41 1. Now it came to pass in the seventh month, that Ishmael the son of Nethaniah the son of Elishama, of the seed…

Jeremiah Chapter 40

Jeremiah Chapter 40 For English Jeremiah 40 Choose a Chapter 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 A+ A A- Jeremiah Chapter 40 1. The word that came to Jeremiah from the LORD, after that Nebuzaradan the captain of the guard had let him go from…

Jeremiah Chapter 39

Jeremiah Chapter 39 For English Jeremiah 39 Choose a Chapter 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 A+ A A- Jeremiah Chapter 39 1. In the ninth year of Zedekiah king of Judah, in the tenth month, came Nebuchadrezzar king of Babylon and all his army…

Jeremiah Chapter 38

Jeremiah Chapter 38 For English Jeremiah 38 Choose a Chapter 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 A+ A A- Jeremiah Chapter 38 1. Then Shephatiah the son of Mattan, and Gedaliah the son of Pashur, and Jucal the son of Shelemiah, and Pashur the son…

Jeremiah Chapter 37

Jeremiah Chapter 37 For English Jeremiah 37 Choose a Chapter 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 A+ A A- Jeremiah Chapter 37 1. And king Zedekiah the son of Josiah reigned instead of Coniah the son of Jehoiakim, whom Nebuchadrezzar king of Babylon made king…

Jeremiah Chapter 36

Jeremiah Chapter 36 For English Jeremiah 36 Choose a Chapter 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 A+ A A- Jeremiah Chapter 36 1. And it came to pass in the fourth year of Jehoiakim the son of Josiah king of Judah, that this word came…

Jeremiah Chapter 35

Jeremiah Chapter 35 For English Jeremiah 35 Choose a Chapter 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 A+ A A- Jeremiah Chapter 35 1. The word which came unto Jeremiah from the LORD in the days of Jehoiakim the son of Josiah king of Judah, saying,…

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