Category English Bible – KJV

Job Chapter 13

Job Chapter 13 For English Job 13 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142 A+ A A- Job Chapter 13 1. Lo, mine eye hath seen all this, mine ear hath heard and understood it. 2. What ye know, the same do I…

Job Chapter 12

Job Chapter 12 For English Job 12 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142 A+ A A- Job Chapter 12 1. And Job answered and said, 2. No doubt but ye are the people, and wisdom shall die with you. 3. But I…

Job Chapter 11

Job Chapter 11 For English Job 11 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142 A+ A A- Job Chapter 11 1. Then answered Zophar the Naamathite, and said, 2. Should not the multitude of words be answered? and should a man full of…

Job Chapter 10

Job Chapter 10 For English Job 10 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142 A+ A A- Job Chapter 10 1. My soul is weary of my life; I will leave my complaint upon myself; I will speak in the bitterness of my…

Job Chapter 9

Job Chapter 9 For English Job 9 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142 A+ A A- Job Chapter 9 1. Then Job answered and said, 2. I know it is so of a truth: but how should man be just with God?…

Job Chapter 8

Job Chapter 8 For English Job 8 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142 A+ A A- Job Chapter 8 1. Then answered Bildad the Shuhite, and said, 2. How long wilt thou speak these things? and how long shall the words of…

Job Chapter 7

Job Chapter 7 For English Job 7 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142 A+ A A- Job Chapter 7 1. Is there not an appointed time to man upon earth? are not his days also like the days of an hireling? 2.…

Job Chapter 6

Job Chapter 6 For English Job 6 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142 A+ A A- Job Chapter 6 1. But Job answered and said, 2. Oh that my grief were throughly weighed, and my calamity laid in the balances together! 3.…

Job Chapter 5

Job Chapter 5 For English Job 5 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142 A+ A A- Job Chapter 5 1. Call now, if there be any that will answer thee; and to which of the saints wilt thou turn? 2. For wrath…

Job Chapter 4

Job Chapter 4 For English Job 4 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142 A+ A A- Job Chapter 4 1. Then Eliphaz the Temanite answered and said, 2. If we assay to commune with thee, wilt thou be grieved? but who can…

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