I have made friends with the jquery cluetip plugin and dig it.
However, I would like to position the cluetip pop up to the left of the target div. Currently it calculates whether there is enough room to the right of the target and failing that will display to the left.
Here's some example code.
$('.myTip').cluetip( { hoverIntent: {
sensitivity: 1,
interval: 100,
timeout: 750
},
cluetipClass: 'rounded',
width: 300, ajaxCache: false, cursor: 'pointer', sticky: true, arrows: false, mouseOutClose: true,
closePosition: 'title', closeText: '<img class="iconFade2" src="${pageContext.request.contextPath}/images/cancel.png" alt="" />' });
Any takers?
http://plugins.learningjquery.com/cluetip/#options
So you can manipulate the default positioning of the cluetip by using
positionBywithleftOffsetandtopOffset, for example:-Obviously you'll have to play around with the values yourself until you get the desired result, but that should point you in the right direction.