Category English Bible – KJV

Psalms Chapter 21

Read Psalms Chapter 21 Online Read Psalms Chapter 21 online from the Holy Bible. This chapter is part of the Book of Psalms in the Old Testament. Browse every verse with easy chapter navigation, continue to the next chapter, or…

Psalms Chapter 20

Read Psalms Chapter 20 Online Read Psalms Chapter 20 online from the Holy Bible. This chapter is part of the Book of Psalms in the Old Testament. Browse every verse with easy chapter navigation, continue to the next chapter, or…

Psalms Chapter 19

Read Psalms Chapter 19 Online Read Psalms Chapter 19 online from the Holy Bible. This chapter is part of the Book of Psalms in the Old Testament. Browse every verse with easy chapter navigation, continue to the next chapter, or…

Psalms Chapter 18

Read Psalms Chapter 18 Online Read Psalms Chapter 18 online from the Holy Bible. This chapter is part of the Book of Psalms in the Old Testament. Browse every verse with easy chapter navigation, continue to the next chapter, or…

Psalms Chapter 17

Read Psalms Chapter 17 Online Read Psalms Chapter 17 online from the Holy Bible. This chapter is part of the Book of Psalms in the Old Testament. Browse every verse with easy chapter navigation, continue to the next chapter, or…

Psalms Chapter 16

Read Psalms Chapter 16 Online Read Psalms Chapter 16 online from the Holy Bible. This chapter is part of the Book of Psalms in the Old Testament. Browse every verse with easy chapter navigation, continue to the next chapter, or…

Psalms Chapter 15

Read Psalms Chapter 15 Online Read Psalms Chapter 15 online from the Holy Bible. This chapter is part of the Book of Psalms in the Old Testament. Browse every verse with easy chapter navigation, continue to the next chapter, or…

Psalms Chapter 14

Read Psalms Chapter 14 Online Read Psalms Chapter 14 online from the Holy Bible. This chapter is part of the Book of Psalms in the Old Testament. Browse every verse with easy chapter navigation, continue to the next chapter, or…

Psalms Chapter 13

Read Psalms Chapter 13 Online Read Psalms Chapter 13 online from the Holy Bible. This chapter is part of the Book of Psalms in the Old Testament. Browse every verse with easy chapter navigation, continue to the next chapter, or…

Psalms Chapter 12

Read Psalms Chapter 12 Online Read Psalms Chapter 12 online from the Holy Bible. This chapter is part of the Book of Psalms in the Old Testament. Browse every verse with easy chapter navigation, continue to the next chapter, or…

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