Category English Bible – KJV

Isaiah Chapter 60

Isaiah Chapter 60 For English Isaiah 60 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 60 1. Arise, shine; for thy light is come, and the glory of the LORD is risen upon thee. 2. For, behold, the darkness…

Isaiah Chapter 59

Isaiah Chapter 59 For English Isaiah 59 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 59 1. Behold, the LORD's hand is not shortened, that it cannot save; neither his ear heavy, that it cannot hear: 2. But your…

Isaiah Chapter 58

Isaiah Chapter 58 For English Isaiah 58 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 58 1. Cry aloud, spare not, lift up thy voice like a trumpet, and shew my people their transgression, and the house of Jacob…

Isaiah Chapter 57

Isaiah Chapter 57 For English Isaiah 57 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 57 1. The righteous perisheth, and no man layeth it to heart: and merciful men are taken away, none considering that the righteous is…

Isaiah Chapter 56

Isaiah Chapter 56 For English Isaiah 56 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 56 1. Thus saith the LORD, Keep ye judgment, and do justice: for my salvation is near to come, and my righteousness to be…

Isaiah Chapter 55

Isaiah Chapter 55 For English Isaiah 55 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 55 1. Ho, every one that thirsteth, come ye to the waters, and he that hath no money; come ye, buy, and eat; yea,…

Isaiah Chapter 54

Isaiah Chapter 54 For English Isaiah 54 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 54 1. Sing, O barren, thou that didst not bear; break forth into singing, and cry aloud, thou that didst not travail with child:…

Isaiah Chapter 53

Isaiah Chapter 53 For English Isaiah 53 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 53 1. Who hath believed our report? and to whom is the arm of the LORD revealed? 2. For he shall grow up before…

Isaiah Chapter 52

Isaiah Chapter 52 For English Isaiah 52 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 52 1. Awake, awake; put on thy strength, O Zion; put on thy beautiful garments, O Jerusalem, the holy city: for henceforth there shall…

Isaiah Chapter 51

Isaiah Chapter 51 For English Isaiah 51 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 51 1. Hearken to me, ye that follow after righteousness, ye that seek the LORD: look unto the rock whence ye are hewn, and…

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