I am trying to use flowplayer and I am getting this error JavaScript runtime error: Object doesn't support property or method 'flowplayer'
Here is the code in the SiteMater
<!-- 1. skin -->
<link rel="stylesheet" href="//releases.flowplayer.org/5.4.4/skin/minimalist.css">
<!-- 2. jquery library -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<!-- 3. flowplayer -->
<script src="//releases.flowplayer.org/5.4.4/flowplayer.min.js"></script>
Here is the code in page
<script>
// run script after document is ready
$(function () {
// install flowplayer to an element with CSS class "player"
$(".player").flowplayer({
swf: "/flowplayer/flowplayer.swf"
});
});
</scri ...
Go to the complete details ...