Hello. My tooltip is working good, Unless I'm visiting a specific page in my website.
In this specific page, I have this code:
Code:
<script type="text/javascript" language="javascript">
// Kick off the jQuery with the document ready function on page load
$(document).ready(function(){
imagePreview();
});
// Configuration of the x and y offsets
this.imagePreview = function(){
xOffset = 500;
yOffset = -300;
};
</script>
In order to show image preview better.
But as soon as this code in, my tooltip is going to this position too.
How I can fix that?