See here:
http://tbgentertainment.com/index2.htmlI've been able to get everything I want working without a hitch with jquery. I can't seem to get this MediaElement.js video/audio player working. i did everything according to the installation instructions, but the video doesn't show up. It should show something above that bright blue bar.
Any advice? I'm sure it's some stupid little thing I'm missing. One thing the instructions say is:
### 3. Run startup script
Make sure this is not in the `<head>` tag or iOS 3 will fail.
<script>
// jQuery method
$('video').mediaelementplayer();
</script>
<script>
// normal JavaScript
var player = new MediaElementPlayer('#player');
</script>
Now, my html file starts out like this:
<html lang="en">
<head>
<meta charset="utf-8">
<title>The Musical Rhythm Section</title>
<meta name="author" content="AC" >
<meta name="description" content="The baddest rhythm section on the planet" >
<link rel="stylesheet" type="text/css" href="/css/ac2.css">
<link rel="stylesheet" type="text/css" href="/js/query.fancybox-1.3.4/jquery.fancybox-1.3.4/style.css">
<link rel="stylesheet" type="text/css" href="/js/mediaelement.js/build/mediaelementplayer.css" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script type="text/javascript" src="/js/jquery.collapser.js"></script>
<script type="text/javascript" src="/js/jquery.collapser.min.js"></script>
<script type="text/javascript" src="/js/mediaelement.js/build/mediaelement-and-player.min.js"></script>
<script type="text/javascript">$('video,audio').mediaelementplayer(/* Options */);</script>
</head>
But it doesn't seem like those "video" classes are converting the way the function is supposed to do it. i don't get it.