Bible Reference Taggers: Difference between revisions

From CATUG wiki
Jump to navigation Jump to search
No edit summary
Line 1: Line 1:
You have probably visited at least one site which had Bible verse references that looked like links. When you hover over the reference a tooltip pops up with the content of the verse or verses.
You have probably visited at least one site which had Bible verse references that looked like links. When you hover over the reference a tooltip pops up with the content of the verse or verses.


So far I have found four different Bible Reference Taggers that can be added to your own web pages or your entire web site.  
So far I have found five different Bible Reference Taggers that can be added to your own web pages or your entire web site.  
It is all done with a line or two or three of  Javascript.  
It is all done with a line or two or three of  Javascript.  
When a page with this JavaScript loads, the script will turn all Bible references on a page into links that put up a tooltip with the verses specified.
When a page with this JavaScript loads, the script will turn all Bible references on a page into links that put up a tooltip with the verses specified.
Line 51: Line 51:
<pre>
<pre>
<script type="text/javascript" src="http://av1611.com/verseclick/verseclick.js"></script>
<script type="text/javascript" src="http://av1611.com/verseclick/verseclick.js"></script>
</pre>
== ESV CrossRef ==
http://www.esv.org/tools/esv-crossref/
Just copy the code below and paste it right before the ending body tag ‘</body>’ of your website.  Its that simple!
<pre>
<script src="http://www.esvapi.org/crossref/crossref.min.js" type="text/javascript"></script>
</pre>
</pre>


[[Category:Websites]]
[[Category:Websites]]

Revision as of 02:40, 9 January 2012

You have probably visited at least one site which had Bible verse references that looked like links. When you hover over the reference a tooltip pops up with the content of the verse or verses.

So far I have found five different Bible Reference Taggers that can be added to your own web pages or your entire web site. It is all done with a line or two or three of Javascript. When a page with this JavaScript loads, the script will turn all Bible references on a page into links that put up a tooltip with the verses specified.

Blue Letter Bible

http://www.blueletterbible.org/freeoffer/BLB_ScriptTagger/

Add the following right before </head> tag:

<!-- Blue Letter Bible Tagger -->
<script src="http://www.blueletterbible.org/scripts/blbToolTip/BLB_ScriptTagger-min.js" type="text/javascript"></script>
<script type="text/javascript">BLB.Tagger.Translation = 'KJV';</script>

This is the Tagger I have added to my personal wiki, by modifying skins/Monobook.php. I have also added this tagger to one of the books on my site: Abide In Christ (Andrew Murray)

NET Bible

http://labs.bible.org/NETBibleTagger

Add the following right before </body> tag:

<!-- Go Here: http://labs.bible.org/NETBibleTagger to add this to your site. -->
 <script type="text/javascript" defer="defer" src="http://labs.bible.org/api/NETBibleTagger/netbibletagger.js">
org.bible.NETBibleTagger.voidOnMouseOut = true;
</script>

Logos

http://reftagger.com/

Add the following right before </body> tag:

<!-- RefTagger from Logos. Visit http://www.logos.com/reftagger. This code should appear directly before the </body> tag. -->
<script src="http://bible.logos.com/jsapi/referencetagging.js" type="text/javascript"> </script> 
<script type="text/javascript">
     Logos.ReferenceTagging.lbsBibleVersion = "ESV";
     Logos.ReferenceTagging.lbsLinksOpenNewWindow = true;
     Logos.ReferenceTagging.lbsLogosLinkIcon = "dark";
     Logos.ReferenceTagging.lbsNoSearchTagNames = [ "h2", "h3", "h3" ];
     Logos.ReferenceTagging.lbsTargetSite = "biblia";
     Logos.ReferenceTagging.tag();
</script>

AV1611.com

http://av1611.com/verseclick/

Add the following right before either the </head> or the </body> tag:

<script type="text/javascript" src="http://av1611.com/verseclick/verseclick.js"></script>

ESV CrossRef

http://www.esv.org/tools/esv-crossref/

Just copy the code below and paste it right before the ending body tag ‘</body>’ of your website. Its that simple!

<script src="http://www.esvapi.org/crossref/crossref.min.js" type="text/javascript"></script>