What am I missing?

Raif Turner
Raif Turner Member Posts: 24 ✭✭
edited November 2024 in English Forum

I wanted to try a simple example to verify that I could use reftagger before moving to something more advanced.

I must have something missing here, but I have read the documentation, and looked through much of the forum. The biblical references do not provide links to the passages; they just show up as text. I have the file saved on my desktop as index.html. I would appreciate any assistance.

Here is what I have:

<html>

<body>

Matthew 1<br><br>

<div>
<p>John 3:16</p>
</div>
<br><br>


<script>
var refTagger = {
settings: {
bibleVersion: "NIV",
roundCorners: true,
socialSharing: ["facebook"]
}
};
(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>

</body>

</html>

Comments