javascript - 2 Versions of JQuery on 2 different places conflicting? -


so got website it's not working since have 2 different jquery's loaded , when remove 1 line function not work anymore.

<link href="social-traffic-pop.css" rel="stylesheet" type="text/css" /> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script> <script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script> <script src="http://connect.facebook.net/en_us/all.js#xfbml=1"></script> <script src="http://platform.twitter.com/widgets.js" type="text/javascript"></script> <script src="jquery.stp.js" type="text/javascript"></script> 

and other one:

<!-- javascript --> <script type="text/javascript" async="" src="ga.js"></script><script src="jquery.min.js"></script> <script src="jquery.tabs.pack.js"></script> <script src="jquery.tipsy.js"></script> <script src="jquery.validate.pack.js"></script> <script src="jquery.fancybox.pack.js"></script> <script src="onload.js"></script> 

i wondering on how fix , have 0 javascript experience :/

thanks!


Comments

Popular posts from this blog

wordpress - (T_ENDFOREACH) php error -

Export Excel workseet into txt file using vba - (text and numbers with formulas) -

Using django-mptt to get only the categories that have items -