I have a page I am building that the client requires a menu with a j query effect.
the problem is that our portal also has to load a jQuery scrip lower in the document and this is causing the menu script not to function.
I was looking at the no conflict and tried adding it to the code but It doesn't seem to make a difference. the issue with the menu is that the drop down care hard to get to with the mouse and the transition is not working.
<script type="text/javascript">
var dom = {};
dom.query = jQuery.noConflict(true);
</script>
The two conflicting lines seem to be:
Line 13: <script type="text/javascript" src="js/jquery-1.2.6.min.j
s"></scrip
t>
and
Line 82: <script type="text/javascript" src="/orms/resources/js/jq
uery-1.7.2
.min.js"><
/script>
Here is the test page URL:
http://dev.pds-austin.com/mustang/test3.asp
Any help would be awesome. Thanks.
anyway, you need to get rid of one of the jquery calls. preferably the older one. keep the one on line 82.
If you can't remove the one that gets injected, then you can always just put your code below it. That way, you'll be using their jquery call. (put your script below line 82)