views:

36

answers:

1

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

When I combine jquery 1.3.2 with jqueryui 1.7.2 I don't get this error, but it breaks my code...

Is there somewhere a reference table which jquery version works with which jqueryui code?

<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'&gt;&lt;/script&gt;
<script type='text/javascript' src='https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.4/jquery-ui.min.js'&gt;&lt;/script&gt;
</head>
<body>nothing here</body>
</html>
+3  A: 

Can't you just include the 2 most recent versions? Works for me on a number of projects.

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js"&gt;&lt;/script&gt; 
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.5/jquery-ui.min.js"&gt;&lt;/script&gt;
alex