Category English Bible – KJV

Job Chapter 3

Job Chapter 3 For English Job 3 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142 A+ A A- Job Chapter 3 1. After this opened Job his mouth, and cursed his day. 2. And Job spake, and said, 3. Let the day perish wherein…

Job Chapter 2

Job Chapter 2 For English Job 2 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142 A+ A A- Job Chapter 2 1. Again there was a day when the sons of God came to present themselves before the LORD, and Satan came also among…

Job Chapter 1

Job Chapter 1 For English Job 1 Choose a Chapter 123456789101112131415161718192021222324252627282930313233343536373839404142 A+ A A- Job Chapter 1 1. There was a man in the land of Uz, whose name was Job; and that man was perfect and upright, and one…

Esther Chapter 9

Esther Chapter 9 For English Esther 9 Choose a Chapter 12345678910 A+ A A- Esther Chapter 9 1. Now in the twelfth month, that is, the month Adar, on the thirteenth day of the same, when the king's commandment and…

Esther Chapter 8

Esther Chapter 8 For English Esther 8 Choose a Chapter 12345678910 A+ A A- Esther Chapter 8 1. On that day did the king Ahasuerus give the house of Haman the Jews' enemy unto Esther the queen. And Mordecai came…

Esther Chapter 7

Esther Chapter 7 For English Esther 7 Choose a Chapter 12345678910 A+ A A- Esther Chapter 7 1. So the king and Haman came to banquet with Esther the queen. 2. And the king said again unto Esther on the…

Esther Chapter 6

Esther Chapter 6 For English Esther 6 Choose a Chapter 12345678910 A+ A A- Esther Chapter 6 1. On that night could not the king sleep, and he commanded to bring the book of records of the chronicles; and they…

Esther Chapter 5

Esther Chapter 5 For English Esther 5 Choose a Chapter 12345678910 A+ A A- Esther Chapter 5 1. Now it came to pass on the third day, that Esther put on her royal apparel, and stood in the inner court…

Esther Chapter 4

Esther Chapter 4 For English Esther 4 Choose a Chapter 12345678910 A+ A A- Esther Chapter 4 1. When Mordecai perceived all that was done, Mordecai rent his clothes, and put on sackcloth with ashes, and went out into the…

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