> Actually you don't need to go that low-level. Take a peak at the > "generate" method here: > > http://malsup.com/jquery/media/jquery.media.js >
I'm sorry, I've gone over the JS a thousand times and I'm not making any progress. My JS just isn't that strong. Looking over the "generate" method, it looks like I should be able to do something like this: var movieBuild = document.createElement("<object type='video/ quicktime' width='500' height='500' date='serve/sample.mov'></ object>"); ... and append children to that, and then append _that_ as a child to the body to display the movie. But no matter what I do, I'm getting drowned by error messages (for invalid characters, seemingly no matter how I write the line). Can you, in fact, create an element this way?