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>
source
share