Category English Bible – KJV

Job Chapter 23

Job Chapter 23 For English Job 23 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142 A+ A A- Job Chapter 23 1. Then Job answered and said, 2. Even to day is my complaint bitter: my stroke is heavier than my groaning. 3. Oh…

Job Chapter 22

Job Chapter 22 For English Job 22 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142 A+ A A- Job Chapter 22 1. Then Eliphaz the Temanite answered and said, 2. Can a man be profitable unto God, as he that is wise may be…

Job Chapter 21

Job Chapter 21 For English Job 21 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142 A+ A A- Job Chapter 21 1. But Job answered and said, 2. Hear diligently my speech, and let this be your consolations. 3. Suffer me that I may…

Job Chapter 20

Job Chapter 20 For English Job 20 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142 A+ A A- Job Chapter 20 1. Then answered Zophar the Naamathite, and said, 2. Therefore do my thoughts cause me to answer, and for this I make haste.…

Job Chapter 19

Job Chapter 19 For English Job 19 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142 A+ A A- Job Chapter 19 1. Then Job answered and said, 2. How long will ye vex my soul, and break me in pieces with words? 3. These…

Job Chapter 18

Job Chapter 18 For English Job 18 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142 A+ A A- Job Chapter 18 1. Then answered Bildad the Shuhite, and said, 2. How long will it be ere ye make an end of words? mark, and…

Job Chapter 17

Job Chapter 17 For English Job 17 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142 A+ A A- Job Chapter 17 1. My breath is corrupt, my days are extinct, the graves are ready for me. 2. Are there not mockers with me? and…

Job Chapter 16

Job Chapter 16 For English Job 16 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142 A+ A A- Job Chapter 16 1. Then Job answered and said, 2. I have heard many such things: miserable comforters are ye all. 3. Shall vain words have…

Job Chapter 15

Job Chapter 15 For English Job 15 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142 A+ A A- Job Chapter 15 1. Then answered Eliphaz the Temanite, and said, 2. Should a wise man utter vain knowledge, and fill his belly with the east…

Job Chapter 14

Job Chapter 14 For English Job 14 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142 A+ A A- Job Chapter 14 1. Man that is born of a woman is of few days, and full of trouble. 2. He cometh forth like a flower,…

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