Link to home
Start Free TrialLog in
Avatar of MrTV
MrTVFlag for Thailand

asked on

javascript to show video

 /*this code is work  for image how can i make it work for video for code section below
	      var img2 = document.createElement('img');
              img2.src = "http://www.mykohsamui.com/wp-content/uploads/2017/08/sunset-samara-samui.jpg";
              infowincontent.appendChild(img2);

      */ 


               var img2 = document.createElement('video');
              img2.src = "https://www.youtube.com/watch?v=4BGCpKQTMfo";
              img2.autoPlay = true;
              infowincontent.appendChild(img2);
               

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Leonidas Dosas
Leonidas Dosas
Flag of Greece image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of MrTV

ASKER

thank you