I have a page where i have a countdown and flow player. I have to include two different jquery sources. If i take out one the countdown clock doesn t work. If i take out the other the player doesn t work.
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
<script type="text/javascript" src="Video/js/jquery-1.3.2.min.js"></script>
EDIT
<script type="text/javascript">
jQuery.noConflict(true);
$(function () {
var Day = new Date();
Day = new Date(2015, 08, 02, 12, 12, 15, 00)
$( #defaultCountdown ).countdown({until: Day});
$( #year ).text(Day.getFullYear());
});
var videopath = "http://www.site.co.uk/Video/";
var swfplayer = videopath + "videos/flowplayer-3.1.1.swf";
</script>