I have an auto_prepend file on my server.
It contains amongst more, the following:
<script src="../scripts/modules/raphael-min.js"></script>
<script>
var this_line_fails = Raphael(0,0,100,100);
//var overpaint_rectangle = overpaint_area.rect(0, 0, 10000, 10000, 0);
//overpaint_rectangle.attr({fill: "red"});
alert('hi');
</script>
But the problem is that in the auto_prepend, the line calling Raphael always fails, it doesn't fail in a regular file though. It is like there is something in the settings of the auto_prepend that is making it fail.
How can I call a Raphael module successfully in an auto_prepend file on my server?