I'm attempting to use reftagger on a site, but it only works when I reload the page. I did find a conversation about this on the thread, but it is way over my head. I don't code. I'm looking to see if someone can show me how to alter the code so that reftagger works all of the time. I'm under the impression that there is something called "AJAX" messing with this working correctly? Once things have been configured how I had hoped, this is what my code looks like.
<script>
var refTagger = {
settings: {
bibleVersion: "ESV"
}
};
(function(d, t) {
var g = d.createElement(t), s = d.getElementsByTagName(t)[0];
g.src = "//api.reftagger.com/v2/RefTagger.js";
s.parentNode.insertBefore(g, s);
}(document, "script"));
</script>