There is a YT video loading in my banner ad.
I am wondering if possible do do the following:
It should be unmute on mouseover, and mute on mouseout.
If mouseover and you reload the page (with mouseover, without moving), it should recognise this state as mouseover and play the sound.
As GWD doesn"t allow it for YT object, I am trying to add custom code to the page, but it is not working.
Got this script (not even sure if is correct) and wrote it as an event, for the entire page.
>>>>
gwd.auto_Gwd_gesture_1Hover = function(event) {
gwd.actions.gwdYoutube.toggleMute('gwd-youtube_1');
};
gwd.auto_Gwd_gesture_1Hoverend = function(event) {
gwd.actions.gwdYoutube.toggleMute('gwd-youtube_1');
}