createElement and progid
Posted: 19 Aug 2008 14:22
Hi,
is there any way to specify the progid, when creating a VLC instance using createElement ?
It seems that :
does not take progId into account and I can only use the old API
Xavier
is there any way to specify the progid, when creating a VLC instance using createElement ?
It seems that :
Code: Select all
vlc = document.createElement("EMBED");
vlc.progid="VideoLAN.VLCPlugin.2";
vlc.type="application/x-vlc-plugin";
document.body.appendChild(vlc);
Xavier