Category English Bible – KJV

Psalms Chapter 31

Read Psalms Chapter 31 Online Read Psalms Chapter 31 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 30

Read Psalms Chapter 30 Online Read Psalms Chapter 30 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 29

Read Psalms Chapter 29 Online Read Psalms Chapter 29 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 28

Read Psalms Chapter 28 Online Read Psalms Chapter 28 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 27

Read Psalms Chapter 27 Online Read Psalms Chapter 27 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 26

Read Psalms Chapter 26 Online Read Psalms Chapter 26 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 25

Read Psalms Chapter 25 Online Read Psalms Chapter 25 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 24

Read Psalms Chapter 24 Online Read Psalms Chapter 24 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 23

Read Psalms Chapter 23 Online Read Psalms Chapter 23 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 22

Read Psalms Chapter 22 Online Read Psalms Chapter 22 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; } };