Category English Bible – KJV

Jeremiah Chapter 4

Jeremiah Chapter 4 For English Jeremiah 4 Choose a Chapter 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 A+ A A- Jeremiah Chapter 4 1. If thou wilt return, O Israel, saith the LORD, return unto me: and if thou wilt put away thine abominations out of…

Jeremiah Chapter 3

Jeremiah Chapter 3 For English Jeremiah 3 Choose a Chapter 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 A+ A A- Jeremiah Chapter 3 1. They say, If a man put away his wife, and she go from him, and become another man's, shall he return unto…

Jeremiah Chapter 2

Jeremiah Chapter 2 For English Jeremiah 2 Choose a Chapter 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 A+ A A- Jeremiah Chapter 2 1. Moreover the word of the LORD came to me, saying, 2. Go and cry in the ears of Jerusalem, saying, Thus saith…

Jeremiah Chapter 1

Jeremiah Chapter 1 For English Jeremiah 1 Choose a Chapter 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 A+ A A- Jeremiah Chapter 1 1. The words of Jeremiah the son of Hilkiah, of the priests that were in Anathoth in the land of Benjamin: 2. To…

Isaiah Chapter 66

Isaiah Chapter 66 For English Isaiah 66 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 66 1. Thus saith the LORD, The heaven is my throne, and the earth is my footstool: where is the house that ye build…

Isaiah Chapter 65

Isaiah Chapter 65 For English Isaiah 65 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 65 1. I am sought of them that asked not for me; I am found of them that sought me not: I said, Behold…

Isaiah Chapter 64

Isaiah Chapter 64 For English Isaiah 64 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 64 1. Oh that thou wouldest rend the heavens, that thou wouldest come down, that the mountains might flow down at thy presence, 2.…

Isaiah Chapter 63

Isaiah Chapter 63 For English Isaiah 63 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 63 1. Who is this that cometh from Edom, with dyed garments from Bozrah? this that is glorious in his apparel, travelling in the…

Isaiah Chapter 62

Isaiah Chapter 62 For English Isaiah 62 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 62 1. For Zion's sake will I not hold my peace, and for Jerusalem's sake I will not rest, until the righteousness thereof go…

Isaiah Chapter 61

Isaiah Chapter 61 For English Isaiah 61 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 61 1. The Spirit of the Lord GOD is upon me; because the LORD hath anointed me to preach good tidings unto the meek;…

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