Verison compatibility issue?
Hi all,
I'm a new jquery user.
I've got a site with the following code already in place:
- <script language="javascript" type="text/javascript" src="/javascript/jquery-1.2.6.min.js"></script>
<script language="javascript" type="text/javascript" src="/javascript/jquery-ui.js"></script>
<script language="javascript" type="text/javascript" src="/javascript/json2.js"></script>
<script language="javascript" type="text/javascript" src="/javascript/dialogs.js"></script>
<script language="javascript" type="text/javascript" src="/javascript/adminutils.js"></script>
<script language="javascript" type="text/javascript">
$(document).ready(function () {
$('#mainmenu_3').click(function () {
NewsletterSignup();
return false;
});
enableCharLimit('textBox1', 2000, 'textBox1_info');
enableCharLimit('textBox2', 2000, 'textBox2_info');
});
</script>
I'm trying to add this feature to a page:
http://www.clecompte.com/building-simple-jquery-rotating-carousel/
If I just load up this code with my existing jquery library reference, it doesn't work. If I use a newer library (like 1.3.2 used on the example page at the link above, or the latest version), it breaks other things on the site.
As a temporary workaround, I've used an iframe to bring this in as a separate page, but obviously that's not ideal.
I'd like to get everything working on the same page, but I'm not sure where to begin troubleshooting.
I realize there could be problems with some of the other javascript, but I was wondering if someone could point me in the right direction with regard to any possible jquery issues.
Thanks.