how do I update my jquery files. cs6 dreamweaver has outdated 1.6.4 jquery min.js file and other outdated files for jquery. I went to jquery and downloaded the new files but swapping them out did not change the 1.6.4 to 1.7.2. Can anyone explain the process to me?
Thanks
Did you change the file link in your document from 1.6.4 to 1.7.2? Code in the header should be something like:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script>
if you are linking to the google library or
<script type="text/javascript" src="scripts/jquery-1.7.2.min.js"></script>
if you are hosting the file on your site.
Re-check your file paths and that the file(s) you need are actually saved within your site.
Chris
If you use the jQuery-latest from the jQuery's CDN, no numbers are required.
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js">
</script>
Nancy O.
North America
Europe, Middle East and Africa
Asia Pacific