So my question is how do I start a movie with a call to a javascript / jquery function?
Background:
I have an object in my html that embeds is a .mov file like so_Stack Overflow日本語サイト
Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
I have an object in my html that embeds is a .mov file like so
function startMovie(whom){ var playIt = 'movie'+ whom; document.getElementById(playIt).Play(); } startMovie('1');
それを試してみてください。