I'm currently working on implementing a flash component similar to the one used on retailmenot.com, but I've encountered some challenges in the process.
After spending days searching for solutions, I managed to get the zeroclipboard flash element to function correctly with multiple coupon codes. When I click on a code, it opens a new URL as expected.
However, what I'm struggling with now is trying to display a "Copy and Open Site" box, appearing like a tooltip, on the right side of the element I hover over. I have tried various jQuery methods, such as using $('.class_element').hover( function (){ } display new div on the left), but since the flash element is positioned on top, the action is not triggered.
Another attempt was modifying the Zeroclipboard.js file by adding an ID to the absolute div containing the flash and applying a hover event to it, yet this also did not work.
I even experimented with addEventListener('mouseover', function(){}) on the Zeroclipboard element, but again, no success.
If you have any suggestions on how I can create a tooltip-like feature for flash components positioned above DOM elements, I would greatly appreciate it!
Thank you!