I have a strange problem. I am coding a website and adding jQuery and some plugins that are stored in the js folder. When I try to open it through jQuery browser, plugins and all my own scripts do not work. Perhaps this is due to my code, but I don't think so. Of course, when I enable jQuery from the outside (Google API), it works, but it has plugins and scripts that are not located elsewhere. Here is my 'head' tag.
<title>TOMTRANS - International Transport</title> <link rel="stylesheet" type="text/css" href="css/style.css" media="screen" /> <link rel="stylesheet" type="text/css" href="css/s3slider.css" media="screen" /> <script type="text/javascript" src="js/jquery-1.6.2.min.js"></script> <script type="text/javascript" src="js/functions.js"></script> <script type="text/javascript" src="js/s3Slider.js"></script> <script type="text/javascript"> $(function() { $('#s3slider').s3Slider({ timeOut : 3000, }); }); </script>
source share