Search code examples
jqueryswfobjectyoutube-api

How do I remove a flash video completely after the video was called by swfobject


Via SWFobject and AJAX I put in a video to a certain <div>.

Using jQuery I tried this:

$('#youtubepreview').html('');

However that didn't remove it at all - the video still stayed right there.

Any ideas?


Solution

  • This worked for me:

    $("#youtubepreview object").remove();