Hi,
I have reftagger working on my site and I'm using the NKJV. There are a few select verses that I would like to use the KJV for. How could I go about doing this?
The idea I had would be to include two versions of the script, one for NKJV that ignores the selected class names ".kjv" that would be applied to the few verses that I want to be KJV. The second would ignore all other verses and ONLY apply to elements with the class of .kjv.
I found an old post that suggested doing something like this:
<code>$('.kjv').each(function(){
Logos.ReferenceTagging.tag(this);
});
But I don't know where that would go? Forgive me, JS/Jquery is very foreign to me. Would it be a bad idea to include two versions of reftagger (one for nkjv, other for kjv)?