I was asked to add Stratus 2 Beta to our website so we can stream music. I went to the stratus website and they make it seem really simple to add the code they have to the website HTML but I can't get it to work.
This is what I have for it (including the jQuery file):
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="http://stratus.sc/stratus.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$.stratus({
links: 'http://soundcloud.com/wearelisten/listen_2'
});
});
</script>
I have this between the </head>
and <body>
script.
make sure you have jQuery installed
The
<script type="text/javascript" src="jquery.js">
points to thejquery.js
file that is the main library for jQuery. That's what's giving you issues.Download Jquery production from their site, unzip it and upload to your website (I put mine in a jquery folder) and change the
src="jquery.js"
tosrc="jquery/jquery.js"
(assuming jquery is your folder)OR
reference the Google hosted one, change the tag to method 1 as is described in "Using Google to host your jQuery (or other) JavaScript libraries":