Hi semicolonweb,
First I have to tell you that I love canvas. I tried many frameworks before and canvas is really the absolutely best one.
I have a problem and I hope you can help me. It is regarding my website www.ionas.ch.
On the first page you can find at the end of the page some testimonials. These are working great if I don't use custom js code.
But I want to implement a short tracking tool called "Glance" (was a former codecanyon tool - https://codecanyon.net/item/glance-simple-web-analytics/5087463).
So if I add the necessary code for glance at the end of my index.php the small red buttons of the testimonials jump to the top. As soon as I remove the js from glance it is working fine again.
Here is the code of glance:
<script type="text/javascript">
var _glance = 'www.ionas.ch/glance/track.php';
var script = document.createElement('script');
script.src = '/glance/glance.min.js';
document.getElementsByTagName('head')[0].appendChild(script);
</script>
Can you help me how to prevent this?
