Category English Bible – KJV

Ecclesiastes Chapter 10

Ecclesiastes Chapter 10 For English Ecclesiastes 10 Choose a Chapter 123456789101112 A+ A A- Ecclesiastes Chapter 10 1. Dead flies cause the ointment of the apothecary to send forth a stinking savour: so doth a little folly him that is…

Ecclesiastes Chapter 9

Ecclesiastes Chapter 9 For English Ecclesiastes 9 Choose a Chapter 123456789101112 A+ A A- Ecclesiastes Chapter 9 1. For all this I considered in my heart even to declare all this, that the righteous, and the wise, and their works,…

Ecclesiastes Chapter 8

Ecclesiastes Chapter 8 For English Ecclesiastes 8 Choose a Chapter 123456789101112 A+ A A- Ecclesiastes Chapter 8 1. Who is as the wise man? and who knoweth the interpretation of a thing? a man's wisdom maketh his face to shine,…

Ecclesiastes Chapter 4

Ecclesiastes Chapter 4 For English Ecclesiastes 4 Choose a Chapter 123456789101112 A+ A A- Ecclesiastes Chapter 4 1. So I returned, and considered all the oppressions that are done under the sun: and behold the tears of such as were…

Ecclesiastes Chapter 2

Ecclesiastes Chapter 2 For English Ecclesiastes 2 Choose a Chapter 123456789101112 A+ A A- Ecclesiastes Chapter 2 1. I said in mine heart, Go to now, I will prove thee with mirth, therefore enjoy pleasure: and, behold, this also is…

Ecclesiastes Chapter 1

Ecclesiastes Chapter 1 For English Ecclesiastes 1 Choose a Chapter 123456789101112 A+ A A- Ecclesiastes Chapter 1 1. The words of the Preacher, the son of David, king in Jerusalem. 2. Vanity of vanities, saith the Preacher, vanity of vanities;…

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