jQuery backstretch plugin won't work at all -- new to programming -


i can't backstretch plugin work @ all.

i downloaded directly here , following along youtube tutorial, code worked , mine didn't.

what doing wrong? have download else? i'm new programming, appreciated.

thank you!

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js">      </script>     <script type="text/javascript" src="js/jquery.backstretch.min.js";     </script>     <script>         $.backstretch("images/floralbackground.jpg");      </script> 

you have syntax error while referring plugin. correct below:

<script type="text/javascript" src="js/jquery.backstretch.min.js"> </script> 

Comments