Hey all! I'm new to using jQuery and pretty new to javascript, basically I am trying to use multiple jQuery plugins on a single page however the outcome varies from safari and firefox (only tested on them so far) depending on the order in which I load them.
For example, one order everything will work fine in safari but one plugin will fail in firefox. Is there a certain procedure for loading multiple plugins without these problems? Thanks in advance! Steve Code Example: <script type="text/javascript" src="/js/jquery.js"></script> <script type="text/javascript" src="/js/plugin-1.js"></script> <script type="text/javascript" src="/js/plugin-2.js"></script> <script type="text/javascript" src="/js/plugin-3.js"></script>