Category English Bible – KJV

Isaiah Chapter 30

Isaiah Chapter 30 For English Isaiah 30 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 30 1. Woe to the rebellious children, saith the LORD, that take counsel, but not of me; and that cover with a covering, but…

Isaiah Chapter 29

Isaiah Chapter 29 For English Isaiah 29 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 29 1. Woe to Ariel, to Ariel, the city where David dwelt! add ye year to year; let them kill sacrifices. 2. Yet I…

Isaiah Chapter 28

Isaiah Chapter 28 For English Isaiah 28 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 28 1. Woe to the crown of pride, to the drunkards of Ephraim, whose glorious beauty is a fading flower, which are on the…

Isaiah Chapter 27

Isaiah Chapter 27 For English Isaiah 27 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 27 1. In that day the LORD with his sore and great and strong sword shall punish leviathan the piercing serpent, even leviathan that…

Isaiah Chapter 26

Isaiah Chapter 26 For English Isaiah 26 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 26 1. In that day shall this song be sung in the land of Judah; We have a strong city; salvation will God appoint…

Isaiah Chapter 25

Isaiah Chapter 25 For English Isaiah 25 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 25 1. O Lord, thou art my God; I will exalt thee, I will praise thy name; for thou hast done wonderful things; thy…

Isaiah Chapter 24

Isaiah Chapter 24 For English Isaiah 24 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 24 1. Behold, the LORD maketh the earth empty, and maketh it waste, and turneth it upside down, and scattereth abroad the inhabitants thereof.…

Isaiah Chapter 23

Isaiah Chapter 23 For English Isaiah 23 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 23 1. The burden of Tyre. Howl, ye ships of Tarshish; for it is laid waste, so that there is no house, no entering…

Isaiah Chapter 22

Isaiah Chapter 22 For English Isaiah 22 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 22 1. The burden of the valley of vision. What aileth thee now, that thou art wholly gone up to the housetops? 2. Thou…

Isaiah Chapter 21

Isaiah Chapter 21 For English Isaiah 21 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 21 1. The burden of the desert of the sea. As whirlwinds in the south pass through; so it cometh from the desert, from…

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