Category English Bible – KJV

Isaiah Chapter 10

Isaiah Chapter 10 For English Isaiah 10 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 10 1. Woe unto them that decree unrighteous decrees, and that write grievousness which they have prescribed; 2. To turn aside the needy from…

Isaiah Chapter 9

Isaiah Chapter 9 For English Isaiah 9 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 9 1. Nevertheless the dimness shall not be such as was in her vexation, when at the first he lightly afflicted the land of…

Isaiah Chapter 8

Isaiah Chapter 8 For English Isaiah 8 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 8 1. Moreover the LORD said unto me, Take thee a great roll, and write in it with a man's pen concerning Mahershalalhashbaz. 2.…

Isaiah Chapter 7

Isaiah Chapter 7 For English Isaiah 7 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 7 1. And it came to pass in the days of Ahaz the son of Jotham, the son of Uzziah, king of Judah, that…

Isaiah Chapter 6

Isaiah Chapter 6 For English Isaiah 6 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 6 1. In the year that king Uzziah died I saw also the LORD sitting upon a throne, high and lifted up, and his…

Isaiah Chapter 5

Isaiah Chapter 5 For English Isaiah 5 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 5 1. Now will I sing to my wellbeloved a song of my beloved touching his vineyard. My wellbeloved hath a vineyard in a…

Isaiah Chapter 4

Isaiah Chapter 4 For English Isaiah 4 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 4 1. And in that day seven women shall take hold of one man, saying, We will eat our own bread, and wear our…

Isaiah Chapter 3

Isaiah Chapter 3 For English Isaiah 3 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 3 1. For, behold, the Lord, the LORD of hosts, doth take away from Jerusalem and from Judah the stay and the staff, the…

Isaiah Chapter 2

Isaiah Chapter 2 For English Isaiah 2 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 2 1. The word that Isaiah the son of Amoz saw concerning Judah and Jerusalem. 2. And it shall come to pass in the…

Isaiah Chapter 1

Isaiah Chapter 1 For English Isaiah 1 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 A+ A A- Isaiah Chapter 1 1. The vision of Isaiah the son of Amoz, which he saw concerning Judah and Jerusalem in the days of Uzziah, Jotham, Ahaz,…

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