Category English Bible – KJV

Isaiah Chapter 40

Isaiah Chapter 40 For English Isaiah 40 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 40 1. Comfort ye, comfort ye my people, saith your God. 2. Speak ye comfortably to Jerusalem, and cry unto her, that her warfare…

Isaiah Chapter 39

Isaiah Chapter 39 For English Isaiah 39 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 39 1. At that time Merodachbaladan, the son of Baladan, king of Babylon, sent letters and a present to Hezekiah: for he had heard…

Isaiah Chapter 38

Isaiah Chapter 38 For English Isaiah 38 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 38 1. In those days was Hezekiah sick unto death. And Isaiah the prophet the son of Amoz came unto him, and said unto…

Isaiah Chapter 37

Isaiah Chapter 37 For English Isaiah 37 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 37 1. And it came to pass, when king Hezekiah heard it, that he rent his clothes, and covered himself with sackcloth, and went…

Isaiah Chapter 36

Isaiah Chapter 36 For English Isaiah 36 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 36 1. Now it came to pass in the fourteenth year of king Hezekiah, that Sennacherib king of Assyria came up against all the…

Isaiah Chapter 35

Isaiah Chapter 35 For English Isaiah 35 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 35 1. The wilderness and the solitary place shall be glad for them; and the desert shall rejoice, and blossom as the rose. 2.…

Isaiah Chapter 34

Isaiah Chapter 34 For English Isaiah 34 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 34 1. Come near, ye nations, to hear; and hearken, ye people: let the earth hear, and all that is therein; the world, and…

Isaiah Chapter 33

Isaiah Chapter 33 For English Isaiah 33 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 33 1. Woe to thee that spoilest, and thou wast not spoiled; and dealest treacherously, and they dealt not treacherously with thee! when thou…

Isaiah Chapter 32

Isaiah Chapter 32 For English Isaiah 32 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 32 1. Behold, a king shall reign in righteousness, and princes shall rule in judgment. 2. And a man shall be as an hiding…

Isaiah Chapter 31

Isaiah Chapter 31 For English Isaiah 31 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 31 1. Woe to them that go down to Egypt for help; and stay on horses, and trust in chariots, because they are many;…

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