I'm trying to fade out the volume of a YouTube video embedded in an iframe when the user closes the modal window it is attached to. Instead of having the audio end abruptly, it would be nice to fade the volume slowly. This code isn't working:
$('#youtube-player').animate({volume: 0}, 1000);
What else can I try?