Jquery and jqueryUI conflict

Is jquery 1.3.2 inconsistent with jqueryui 1.8.4? I get the error "Too many recursion" (using the code below).

When I combine jquery 1.3.2 with jqueryui 1.7.2, I do not get this error, but it interrupts my code ...

Is there a lookup table somewhere in which the jquery version works with which the jqueryui code works with?

<html>
<head>
<title>This is the title</title>
<script type='text/javascript' src='https://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js'></script>
<script type='text/javascript' src='https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.4/jquery-ui.min.js'></script>
</head>
<body>nothing here</body>
</html>
+3
source share
2 answers

Yes, there is a conflict between these versions - and I'm stuck because Drupal does not like JQuery newer than 1.3.2 - I read someone having the same problem because Greasemonkey does not work with any jQuery above 1.3 .2 too.

: http://bugs.jqueryui.com/ticket/6689

ZIP JQuery. ui.dialog - .

+3

2 ? .

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js"></script> 
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.5/jquery-ui.min.js"></script>
+5

Source: https://habr.com/ru/post/1771226/


All Articles