I am trying to make a Redmine plugin that uses jquery.
I get conflicts, when I add the following line in my view:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js" type="text/javascript"></script>
Uncaught TypeError: Cannot call method 'hasChildNodes' of undefined
prototype.js:5734
Uncaught TypeError: Object [object Object] has no method 'dispatchEvent'
prototype.js:828
Uncaught TypeError: Object [object Object] has no method 'attachEvent'
The view is a hook.
If I remove the <script src="">
, it works, but then I have no jQuery to use.