I need to change the location of an HTML5 video tag in a web page. By changing the location I mean passing the tag to another place in the DOM tree.
If I use the JQuery clone function like
$("#first").clone().appendTo("#second");
The video will start from the beggining and it will have to load again.
Is it possible to change the location of a media element like the video element to another part of the tree without having to load the video or audio again? Or at least, is it possible to have more then one player displaying the same video at the same time in a page?