Category English Bible – KJV

Psalms Chapter 101

Read Psalms Chapter 101 Online Read Psalms Chapter 101 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 100

Read Psalms Chapter 100 Online Read Psalms Chapter 100 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 99

Read Psalms Chapter 99 Online Read Psalms Chapter 99 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 98

Read Psalms Chapter 98 Online Read Psalms Chapter 98 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 97

Read Psalms Chapter 97 Online Read Psalms Chapter 97 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 96

Read Psalms Chapter 96 Online Read Psalms Chapter 96 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 95

Read Psalms Chapter 95 Online Read Psalms Chapter 95 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 94

Read Psalms Chapter 94 Online Read Psalms Chapter 94 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 93

Read Psalms Chapter 93 Online Read Psalms Chapter 93 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 92

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