Category English Bible – KJV

Proverbs Chapter 11

Proverbs Chapter 11 For English Proverbs 11 Choose a Chapter 12345678910111213141516171819202122232425262728293031 A+ A A- Proverbs Chapter 11 1. A false balance is abomination to the LORD: but a just weight is his delight. 2. When pride cometh, then cometh shame:…

Proverbs Chapter 10

Proverbs Chapter 10 For English Proverbs 10 Choose a Chapter 12345678910111213141516171819202122232425262728293031 A+ A A- Proverbs Chapter 10 1. The proverbs of Solomon. A wise son maketh a glad father: but a foolish son is the heaviness of his mother. 2.…

Proverbs Chapter 9

Proverbs Chapter 9 For English Proverbs 9 Choose a Chapter 12345678910111213141516171819202122232425262728293031 A+ A A- Proverbs Chapter 9 1. Wisdom hath builded her house, she hath hewn out her seven pillars: 2. She hath killed her beasts; she hath mingled her…

Proverbs Chapter 8

Proverbs Chapter 8 For English Proverbs 8 Choose a Chapter 12345678910111213141516171819202122232425262728293031 A+ A A- Proverbs Chapter 8 1. Doth not wisdom cry? and understanding put forth her voice? 2. She standeth in the top of high places, by the way…

Proverbs Chapter 7

Proverbs Chapter 7 For English Proverbs 7 Choose a Chapter 12345678910111213141516171819202122232425262728293031 A+ A A- Proverbs Chapter 7 1. My son, keep my words, and lay up my commandments with thee. 2. Keep my commandments, and live; and my law as…

Proverbs Chapter 6

Proverbs Chapter 6 For English Proverbs 6 Choose a Chapter 12345678910111213141516171819202122232425262728293031 A+ A A- Proverbs Chapter 6 1. My son, if thou be surety for thy friend, if thou hast stricken thy hand with a stranger, 2. Thou art snared…

Proverbs Chapter 5

Proverbs Chapter 5 For English Proverbs 5 Choose a Chapter 12345678910111213141516171819202122232425262728293031 A+ A A- Proverbs Chapter 5 1. My son, attend unto my wisdom, and bow thine ear to my understanding: 2. That thou mayest regard discretion, and that thy…

Proverbs Chapter 4

Proverbs Chapter 4 For English Proverbs 4 Choose a Chapter 12345678910111213141516171819202122232425262728293031 A+ A A- Proverbs Chapter 4 1. Hear, ye children, the instruction of a father, and attend to know understanding. 2. For I give you good doctrine, forsake ye…

Proverbs Chapter 3

Proverbs Chapter 3 For English Proverbs 3 Choose a Chapter 12345678910111213141516171819202122232425262728293031 A+ A A- Proverbs Chapter 3 1. My son, forget not my law; but let thine heart keep my commandments: 2. For length of days, and long life, and…

Proverbs Chapter 2

Proverbs Chapter 2 For English Proverbs 2 Choose a Chapter 12345678910111213141516171819202122232425262728293031 A+ A A- Proverbs Chapter 2 1. My son, if thou wilt receive my words, and hide my commandments with thee; 2. So that thou incline thine ear unto…

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