Category English Bible – KJV

Proverbs Chapter 31

Proverbs Chapter 31 For English Proverbs 31 Choose a Chapter 12345678910111213141516171819202122232425262728293031 A+ A A- Proverbs Chapter 31 1. The words of king Lemuel, the prophecy that his mother taught him. 2. What, my son? and what, the son of my…

Proverbs Chapter 30

Proverbs Chapter 30 For English Proverbs 30 Choose a Chapter 12345678910111213141516171819202122232425262728293031 A+ A A- Proverbs Chapter 30 1. The words of Agur the son of Jakeh, even the prophecy: the man spake unto Ithiel, even unto Ithiel and Ucal, 2.…

Proverbs Chapter 29

Proverbs Chapter 29 For English Proverbs 29 Choose a Chapter 12345678910111213141516171819202122232425262728293031 A+ A A- Proverbs Chapter 29 1. He, that being often reproved hardeneth his neck, shall suddenly be destroyed, and that without remedy. 2. When the righteous are in…

Proverbs Chapter 28

Proverbs Chapter 28 For English Proverbs 28 Choose a Chapter 12345678910111213141516171819202122232425262728293031 A+ A A- Proverbs Chapter 28 1. The wicked flee when no man pursueth: but the righteous are bold as a lion. 2. For the transgression of a land…

Proverbs Chapter 27

Proverbs Chapter 27 For English Proverbs 27 Choose a Chapter 12345678910111213141516171819202122232425262728293031 A+ A A- Proverbs Chapter 27 1. Boast not thyself of to morrow; for thou knowest not what a day may bring forth. 2. Let another man praise thee,…

Proverbs Chapter 26

Proverbs Chapter 26 For English Proverbs 26 Choose a Chapter 12345678910111213141516171819202122232425262728293031 A+ A A- Proverbs Chapter 26 1. As snow in summer, and as rain in harvest, so honour is not seemly for a fool. 2. As the bird by…

Proverbs Chapter 25

Proverbs Chapter 25 For English Proverbs 25 Choose a Chapter 12345678910111213141516171819202122232425262728293031 A+ A A- Proverbs Chapter 25 1. These are also proverbs of Solomon, which the men of Hezekiah king of Judah copied out. 2. It is the glory of…

Proverbs Chapter 24

Proverbs Chapter 24 For English Proverbs 24 Choose a Chapter 12345678910111213141516171819202122232425262728293031 A+ A A- Proverbs Chapter 24 1. Be not thou envious against evil men, neither desire to be with them. 2. For their heart studieth destruction, and their lips…

Proverbs Chapter 23

Proverbs Chapter 23 For English Proverbs 23 Choose a Chapter 12345678910111213141516171819202122232425262728293031 A+ A A- Proverbs Chapter 23 1. When thou sittest to eat with a ruler, consider diligently what is before thee: 2. And put a knife to thy throat,…

Proverbs Chapter 22

Proverbs Chapter 22 For English Proverbs 22 Choose a Chapter 12345678910111213141516171819202122232425262728293031 A+ A A- Proverbs Chapter 22 1. A GOOD name is rather to be chosen than great riches, and loving favour rather than silver and gold. 2. The rich…

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