View source for MediaWiki:BibleGet.js
You do not have permission to edit this page, for the following reasons:
You can view and copy the source of this page.
(function($){
$(document).ready(function(){
if( $('.bibleQuoteRef').length > 0 ){
console.log("There are bible quotes on this page!");
$('.bibleQuoteRef').each(function(){
let version = $(this).attr('data-version');
let ref = $(this).attr('data-ref');
let $span = $(this);
$.ajax({
method: 'POST',
url: 'https://query.bibleget.io/',
data: {
"version": version,
"query": ref,
"appid": 'SeminaVerbi',
"return": 'html'
},
success: function(data){
let $bGetTIP = $('<div>', {
"class": "bibleGetQuote",
"data-ref": ref,
"html": data
001
1:0
Return to MediaWiki:BibleGet.js.