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?