Category English Bible – KJV

Isaiah Chapter 50

Isaiah Chapter 50 For English Isaiah 50 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 50 1. Thus saith the LORD, Where is the bill of your mother's divorcement, whom I have put away? or which of my creditors…

Isaiah Chapter 49

Isaiah Chapter 49 For English Isaiah 49 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 49 1. Listen, O isles, unto me; and hearken, ye people, from far; The LORD hath called me from the womb; from the bowels…

Isaiah Chapter 48

Isaiah Chapter 48 For English Isaiah 48 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 48 1. Hear ye this, O house of Jacob, which are called by the name of Israel, and are come forth out of the…

Isaiah Chapter 47

Isaiah Chapter 47 For English Isaiah 47 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 47 1. Come down, and sit in the dust, O virgin daughter of Babylon, sit on the ground: there is no throne, O daughter…

Isaiah Chapter 46

Isaiah Chapter 46 For English Isaiah 46 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 46 1. Bel boweth down, Nebo stoopeth, their idols were upon the beasts, and upon the cattle: your carriages were heavy loaden; they are…

Isaiah Chapter 45

Isaiah Chapter 45 For English Isaiah 45 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 45 1. Thus saith the LORD to his anointed, to Cyrus, whose right hand I have holden, to subdue nations before him; and I…

Isaiah Chapter 44

Isaiah Chapter 44 For English Isaiah 44 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 44 1. Yet now hear, O Jacob my servant; and Israel, whom I have chosen: 2. Thus saith the LORD that made thee, and…

Isaiah Chapter 43

Isaiah Chapter 43 For English Isaiah 43 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 43 1. But now thus saith the LORD that created thee, O Jacob, and he that formed thee, O Israel, Fear not: for I…

Isaiah Chapter 42

Isaiah Chapter 42 For English Isaiah 42 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 42 1. Behold my servant, whom I uphold; mine elect, in whom my soul delighteth; I have put my spirit upon him: he shall…

Isaiah Chapter 41

Isaiah Chapter 41 For English Isaiah 41 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 41 1. Keep silence before me, O islands; and let the people renew their strength: let them come near; then let them speak: let…

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