Hi,
I use this code to embed a Vimeo video into edge. It is a test so to see what is the best way to put videos on line.
The code is this:
var vimeo = $("<iframe/>");
sym.$("video").append(vimeo);
vimeo.attr('type','text/html');
vimeo.attr('width','960');
vimeo.attr('height','540');
vimeo.attr('src','//player.vimeo.com/video/98626716?');
vimeo.attr('frameborder','0');
vimeo.attr('allowfullscreen','0');
when I test from inside Edge Animate interface it works ok in Chrome. When I try to read the html file from my disk, Vimeo says the video doesn't exist.
I don't know why....
Any help ?