Category English Bible – KJV

Proverbs Chapter 21

Proverbs Chapter 21 For English Proverbs 21 Choose a Chapter 12345678910111213141516171819202122232425262728293031 A+ A A- Proverbs Chapter 21 1. The king's heart is in the hand of the LORD, as the rivers of water: he turneth it whithersoever he will. 2.…

Proverbs Chapter 20

Proverbs Chapter 20 For English Proverbs 20 Choose a Chapter 12345678910111213141516171819202122232425262728293031 A+ A A- Proverbs Chapter 20 1. Wine is a mocker, strong drink is raging: and whosoever is deceived thereby is not wise. 2. The fear of a king…

Proverbs Chapter 19

Proverbs Chapter 19 For English Proverbs 19 Choose a Chapter 12345678910111213141516171819202122232425262728293031 A+ A A- Proverbs Chapter 19 1. Better is the poor that walketh in his integrity, than he that is perverse in his lips, and is a fool. 2.…

Proverbs Chapter 18

Proverbs Chapter 18 For English Proverbs 18 Choose a Chapter 12345678910111213141516171819202122232425262728293031 A+ A A- Proverbs Chapter 18 1. Through desire a man, having separated himself, seeketh and intermeddleth with all wisdom. 2. A fool hath no delight in understanding, but…

Proverbs Chapter 17

Proverbs Chapter 17 For English Proverbs 17 Choose a Chapter 12345678910111213141516171819202122232425262728293031 A+ A A- Proverbs Chapter 17 1. Better is a dry morsel, and quietness therewith, than an house full of sacrifices with strife. 2. A wise servant shall have…

Proverbs Chapter 16

Proverbs Chapter 16 For English Proverbs 16 Choose a Chapter 12345678910111213141516171819202122232425262728293031 A+ A A- Proverbs Chapter 16 1. The preparations of the heart in man, and the answer of the tongue, is from the LORD. 2. All the ways of…

Proverbs Chapter 15

Proverbs Chapter 15 For English Proverbs 15 Choose a Chapter 12345678910111213141516171819202122232425262728293031 A+ A A- Proverbs Chapter 15 1. A soft answer turneth away wrath: but grievous words stir up anger. 2. The tongue of the wise useth knowledge aright: but…

Proverbs Chapter 14

Proverbs Chapter 14 For English Proverbs 14 Choose a Chapter 12345678910111213141516171819202122232425262728293031 A+ A A- Proverbs Chapter 14 1. Every wise woman buildeth her house: but the foolish plucketh it down with her hands. 2. He that walketh in his uprightness…

Proverbs Chapter 13

Proverbs Chapter 13 For English Proverbs 13 Choose a Chapter 12345678910111213141516171819202122232425262728293031 A+ A A- Proverbs Chapter 13 1. A wise son heareth his father's instruction: but a scorner heareth not rebuke. 2. A man shall eat good by the fruit…

Proverbs Chapter 12

Proverbs Chapter 12 For English Proverbs 12 Choose a Chapter 12345678910111213141516171819202122232425262728293031 A+ A A- Proverbs Chapter 12 1. Whoso loveth instruction loveth knowledge: but he that hateth reproof is brutish. 2. A good man obtaineth favour of the LORD: but…

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