Category English Bible – KJV

Job Chapter 33

Job Chapter 33 For English Job 33 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142 A+ A A- Job Chapter 33 1. Wherefore, Job, I pray thee, hear my speeches, and hearken to all my words. 2. Behold, now I have opened my mouth,…

Job Chapter 32

Job Chapter 32 For English Job 32 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142 A+ A A- Job Chapter 32 1. So these three men ceased to answer Job, because he was righteous in his own eyes. 2. Then was kindled the wrath…

Job Chapter 31

Job Chapter 31 For English Job 31 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142 A+ A A- Job Chapter 31 1. I made a covenant with mine eyes; why then should I think upon a maid? 2. For what portion of God is…

Job Chapter 30

Job Chapter 30 For English Job 30 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142 A+ A A- Job Chapter 30 1. But now they that are younger than I have me in derision, whose fathers I would have disdained to have set with…

Job Chapter 29

Job Chapter 29 For English Job 29 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142 A+ A A- Job Chapter 29 1. Moreover Job continued his parable, and said, 2. Oh that I were as in months past, as in the days when God…

Job Chapter 28

Job Chapter 28 For English Job 28 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142 A+ A A- Job Chapter 28 1. Surely there is a vein for the silver, and a place for gold where they fine it. 2. Iron is taken out…

Job Chapter 27

Job Chapter 27 For English Job 27 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142 A+ A A- Job Chapter 27 1. Moreover Job continued his parable, and said, 2. As God liveth, who hath taken away my judgment; and the Almighty, who hath…

Job Chapter 26

Job Chapter 26 For English Job 26 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142 A+ A A- Job Chapter 26 1. But Job answered and said, 2. How hast thou helped him that is without power? how savest thou the arm that hath…

Job Chapter 25

Job Chapter 25 For English Job 25 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142 A+ A A- Job Chapter 25 1. Then answered Bildad the Shuhite, and said, 2. Dominion and fear are with him, he maketh peace in his high places. 3.…

Job Chapter 24

Job Chapter 24 For English Job 24 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142 A+ A A- Job Chapter 24 1. Why, seeing times are not hidden from the Almighty, do they that know him not see his days? 2. Some remove the…

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