Hello, I am trying to insert a video into HTML using jQuery for iPad but all I see is a black screen. If I add the video tag directly to the HTML page all seems to work fine.
Here is what I have in my JavaScript and I call this using a function for onClick event.
var html = "";
html += '<video id="someVideo" width="'+settings.width+'" height="'+settings.height+'" controls="controls">';
html += '<source src="'+url+'" type="video/mp4" />';
html += '</video>';
$("#videoDiv").html(html);
If I create a video tag right inside the body everything seems to be working fine
<video width=708px height=300px controls="controls"><source src="video.mp4" type="video/mp4"></video>
The reason I am planning a JavaScript is that I have few videos on the same page and wanted the user to select a video to be viewed as oppose to a single video on a page... Any idea around that will also help
Any help will be greatly appreciated Thanks