Category English Bible – KJV

Psalms Chapter 1

Psalms Chapter 1 For English Psalms 1 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 A+ A A- Psalms Chapter 1 1. Blessed is the man that walketh not in the counsel of the ungodly, nor standeth in the way of sinners, nor sitteth…

Job Chapter 42

Job Chapter 42 For English Job 42 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142 A+ A A- Job Chapter 42 1. Then Job answered the LORD, and said, 2. I know that thou canst do every thing, and that no thought can be…

Job Chapter 41

Job Chapter 41 For English Job 41 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142 A+ A A- Job Chapter 41 1. Canst thou draw out leviathan with an hook? or his tongue with a cord which thou lettest down? 2. Canst thou put…

Job Chapter 40

Job Chapter 40 For English Job 40 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142 A+ A A- Job Chapter 40 1. Moreover the LORD answered Job, and said, 2. Shall he that contendeth with the Almighty instruct him? he that reproveth God, let…

Job Chapter 39

Job Chapter 39 For English Job 39 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142 A+ A A- Job Chapter 39 1. Knowest thou the time when the wild goats of the rock bring forth? or canst thou mark when the hinds do calve?…

Job Chapter 38

Job Chapter 38 For English Job 38 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142 A+ A A- Job Chapter 38 1. Then the LORD answered Job out of the whirlwind, and said, 2. Who is this that darkeneth counsel by words without knowledge?…

Job Chapter 37

Job Chapter 37 For English Job 37 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142 A+ A A- Job Chapter 37 1. At this also my heart trembleth, and is moved out of his place. 2. Hear attentively the noise of his voice, and…

Job Chapter 36

Job Chapter 36 For English Job 36 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142 A+ A A- Job Chapter 36 1. Elihu also proceeded, and said, 2. Suffer me a little, and I will shew thee that I have yet to speak on…

Job Chapter 35

Job Chapter 35 For English Job 35 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142 A+ A A- Job Chapter 35 1. Elihu spake moreover, and said, 2. Thinkest thou this to be right, that thou saidst, My righteousness is more than God's? 3.…

Job Chapter 34

Job Chapter 34 For English Job 34 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142 A+ A A- Job Chapter 34 1. Furthermore Elihu answered and said, 2. Hear my words, O ye wise men; and give ear unto me, ye that have knowledge.…

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