Is there a way to use jQueryUI to popup a YouTube video modally?
Here's the YouTube code I have:
<object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/DIuXtsaUDmM?fs=1&hl=en_US"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/DIuXtsaUDmM?fs=1&hl=en_US" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object>
You can use the swfobject script to embed the flash object into the modal popup.
Use the dialog's open event to attach a handler which embeds the flash movie:
You could always use fancybox or something similar.
You can try modifying this code below to fit your scenario .. i've used your video link though. You'll have to download the jquery files as well.
Hope this helps