Hi everyone, why oh why are we blessed with IE?
Does anyone know how to make it work with two jquery modules on VBA? It works 100% in FF and Chrome, but not in IE9 or 10, unless I disable one of them.


I'm a relative noob with coding but know my way around a little bit, so if anyone can offer any advice on how to get two different instances of jquery running on IE I would appreciate it, thanks.
--------------- Added [DATE]1365236176[/DATE] at [TIME]1365236176[/TIME] ---------------
Or as a workaround, although not ideal really, but is there a piece of code I can put in the template to disable something if it detects any version of the IE browser?
--------------- Added [DATE]1365262772[/DATE] at [TIME]1365262772[/TIME] ---------------
I think these are the two bits of code that need to play nice together:
Code:
<!-- Rotating Code -->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" ></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.5.3/jquery-ui.min.js" ></script>
<!-- / Rotating Code -->
and
Code:
<!-- CSS Mac Dock -->
<script type="text/javascript" src="clientscript/jquery.js"></script>
<script type="text/javascript" src="clientscript/interface.js"></script>
<!--[if lt IE 7]>
<style type="text/css">
div, img { behavior: url(images/dock/iepngfix.htc) }
</style>
<![endif]-->