I have a function created that displays a 'speech-bubble' when I hover over the parent object. However the bubble is set to display above the parent object, as calculated by it's height.
I'm trying to work this into a responsive design, and as such the width and height are both dynamic. I've tried to run the function after the window resize with the following code:
$(window).resize(function() {
$('.popup').popup();
}).trigger('resize');
This almost seems to do the trick, but it's quite buggy. You can see what I mean by checking out this jsfiddle I put together.
The speech bubble works fine before the window is resized, but once it's been resized and you hover over one of the trigger objects the speech bubble animates for what looks like 5 or so repetitions.
No doubt this wasn't originally written for a responsive design and I'm not much of a JS developer, so if anyone sees any clear improvements that could be made I'd be happy to accept them! :D