Yes, you can absolutely position tooltips using x/y coordinates. For your jQuery scenario, you'll need to: 1. Modify the tooltip initialization to use absolute positioning: ```javascript $('.element').tooltip({ position: { my: 'left top', at: 'left ' x ' top ' y, using: function(position, feedback) { $(this).css(position); } } }); ``` grade calculator
2. Or directly position the tooltip element: ```javascript function showMapTrialTooltip(x,y) { $('#tooltip').css({ 'position': 'absolute', 'left': x 'px', 'top': y 'px' }).show(); } ``` Would you like me to provide a complete working example with your AJAX implementation?
123.24.143.6
If your question is related to the topic of this post, you can post your question to this page by clicking the "Post a reply" button at left;
If your question is related to the Javascript Tooltip, click:
Ask new question: Javascript TooltipOtherwise navigate to one of the following forum categories, and post your question there.
##