I have two jquery items on one page (slider and vticker) and only one will work at a time? how can I get them to work together? i have added a link to my html below. I am new to jquery help please...
|
You are including your JavaScript libraries and plugins in the completely wrong way. Please upload the needed JavaSript Plugins and libraries in a separate folder in your website root. I mean the actual .js files, the one you downloaded from their authors. For example call that folder 'scripts'. Then just below your CSS inclusions, you'll include your JavaScript libraries with the following syntax:
Currently you are making a link to a javascript file that does not exist, and additionally you are pasting the library plain code in your web page. That's not a good way to go. Additionally, always include jQuery library first, before loading any other plugins that depend on it. Keep in mind that it is probably acceptable to do the plugin initialization in the page it self, rather than a separate file, just like you did with your vTicker:
|
|||||
|
|
^^ That would be your first problem. Also note that your background image is nearly 2MB - this is excessively big and took a while to download! You should probably attempt to web optimise that. |
|||||
|